FreeCAD/src/Mod/PartDesign/CMakeLists.txt
2014-11-15 18:48:58 +01:00

74 lines
1.5 KiB
CMake

add_subdirectory(App)
if(BUILD_GUI)
add_subdirectory(Gui)
endif(BUILD_GUI)
INSTALL(
FILES
__init__.py
Init.py
InitGui.py
TestPartDesignApp.py
TestPartDesignGui.py
InvoluteGearFeature.py
InvoluteGearFeature.ui
DESTINATION
Mod/PartDesign
)
INSTALL(
FILES
Scripts/__init__.py
Scripts/DistanceBolt.py
Scripts/Epitrochoid.py
Scripts/FilletArc.py
Scripts/Gear.py
Scripts/Parallelepiped.py
Scripts/RadialCopy.py
Scripts/Spring.py
DESTINATION
Mod/PartDesign/Scripts
)
INSTALL(
FILES
fcgear/__init__.py
fcgear/fcgear.py
fcgear/fcgeardialog.py
fcgear/involute.py
fcgear/svggear.py
DESTINATION
Mod/PartDesign/fcgear
)
SET(WizardShaft_SRCS
WizardShaft/__init__.py
WizardShaft/WizardShaft.svg
WizardShaft/WizardShaft.py
WizardShaft/WizardShaftTable.py
WizardShaft/Shaft.py
WizardShaft/ShaftFeature.py
WizardShaft/ShaftDiagram.py
WizardShaft/SegmentFunction.py
)
SOURCE_GROUP("wizardshaft" FILES ${WizardShaft_SRCS})
SET(all_wizardshaft_files ${WizardShaft_SRCS})
ADD_CUSTOM_TARGET(WizardShaft ALL
SOURCES ${all_wizardshaft_files}
)
SET(all_files ${all_wizardshaft_files})
fc_copy_sources(WizardShaft "${CMAKE_BINARY_DIR}/Mod/PartDesign" ${all_files})
INSTALL(
FILES
${WizardShaft_SRCS}
DESTINATION
Mod/PartDesign/WizardShaft
)