Spreadsheet: Updated cmake stuff

This commit is contained in:
Yorik van Havre 2013-08-05 15:14:47 -03:00
parent f416a324b7
commit c1567311c4
2 changed files with 23 additions and 0 deletions

View File

@ -51,5 +51,7 @@ add_subdirectory(OpenSCAD)
add_subdirectory(Plot)
add_subdirectory(Spreadsheet)

View File

@ -0,0 +1,21 @@
SET(Spreadsheet_SRCS
Init.py
InitGui.py
Spreadsheet.py
Spreadsheet_rc.py
)
SOURCE_GROUP("" FILES ${Spreadsheet_SRCS})
SET(all_files ${Spreadsheet_SRCS})
ADD_CUSTOM_TARGET(Spreadsheet ALL
SOURCES ${all_files}
)
fc_copy_sources(Spreadsheet "${CMAKE_BINARY_DIR}/Mod/Spreadsheet" ${all_files})
INSTALL(
FILES ${Spreadsheet_SRCS}
DESTINATION Mod/Spreadsheet
)