FreeCAD/src/Mod/Draft/CMakeLists.txt
2014-08-07 11:07:22 -03:00

37 lines
588 B
CMake

SET(Draft_SRCS
Init.py
InitGui.py
Draft.py
DraftTools.py
DraftGui.py
DraftSnap.py
DraftTrackers.py
DraftVecUtils.py
DraftGeomUtils.py
WorkingPlane.py
importDXF.py
importOCA.py
importSVG.py
importDWG.py
importAirfoilDAT.py
Draft_rc.py
TestDraft.py
)
SOURCE_GROUP("" FILES ${Draft_SRCS})
SET(all_files ${Draft_SRCS})
ADD_CUSTOM_TARGET(Draft ALL
SOURCES ${all_files}
)
fc_copy_sources(Draft "${CMAKE_BINARY_DIR}/Mod/Draft" ${all_files})
INSTALL(
FILES
${Draft_SRCS}
DESTINATION
Mod/Draft
)