29 lines
553 B
CMake
29 lines
553 B
CMake
|
|
add_subdirectory(App)
|
|
if(BUILD_GUI)
|
|
add_subdirectory(Gui)
|
|
endif(BUILD_GUI)
|
|
|
|
INSTALL(
|
|
FILES
|
|
Init.py
|
|
InitGui.py
|
|
MakeBottle.py
|
|
TestPartApp.py
|
|
TestPartGui.py
|
|
JoinFeatures.py
|
|
DESTINATION
|
|
Mod/Part
|
|
)
|
|
|
|
INSTALL(
|
|
FILES
|
|
AttachmentEditor/__init__.py
|
|
AttachmentEditor/Commands.py
|
|
AttachmentEditor/FrozenClass.py
|
|
AttachmentEditor/TaskAttachmentEditor.py
|
|
AttachmentEditor/TaskAttachmentEditor.ui
|
|
DESTINATION
|
|
Mod/Part/AttachmentEditor
|
|
)
|