
Attributions: Mark (quick61) - icons Yorik - help with internationalization Everyone who appeared in forum thread "A new Part tool is being born... JoinFeatures!" - for endorsement! http://forum.freecadweb.org/viewtopic.php?f=22&t=11112
18 lines
262 B
CMake
18 lines
262 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
|
|
)
|