You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
673 B
CMake
19 lines
673 B
CMake
13 years ago
|
FILE(GLOB SRC *.cpp *.h)
|
||
|
|
||
|
ADD_EXECUTABLE(nl_sample_pacs WIN32 ${SRC})
|
||
|
|
||
12 years ago
|
ADD_DEFINITIONS(-DNL_PACS_DATA="\\"${NL_SHARE_ABSOLUTE_PREFIX}/nl_sample_pacs/\\"")
|
||
13 years ago
|
|
||
|
TARGET_LINK_LIBRARIES(nl_sample_pacs nelmisc nelpacs nel3d)
|
||
|
NL_DEFAULT_PROPS(nl_sample_pacs "NeL, Samples: PACS")
|
||
|
NL_ADD_RUNTIME_FLAGS(nl_sample_pacs)
|
||
|
|
||
12 years ago
|
INSTALL(TARGETS nl_sample_pacs RUNTIME DESTINATION ${NL_BIN_PREFIX} COMPONENT samplespacs)
|
||
12 years ago
|
INSTALL(FILES readme.txt DESTINATION ${NL_SHARE_PREFIX}/nl_sample_pacs COMPONENT samplespacs)
|
||
13 years ago
|
INSTALL(DIRECTORY shapes/
|
||
12 years ago
|
DESTINATION ${NL_SHARE_PREFIX}/nl_sample_pacs/shapes
|
||
13 years ago
|
COMPONENT samplespacs
|
||
|
PATTERN "CVS" EXCLUDE
|
||
|
PATTERN ".svn" EXCLUDE
|
||
|
PATTERN "Makefile*" EXCLUDE)
|