source:
code/branches/buildsystem2/src/cpptcl/CMakeLists.txt
@
2624
Last change on this file since 2624 was 2624, checked in by rgrieder, 16 years ago | |
---|---|
|
|
File size: 537 bytes |
Rev | Line | |
---|---|---|
[2621] | 1 | SET(CPPTCL_FILES |
[2622] | 2 | cpptcl.h |
3 | cpptcl.cc | |
[2621] | 4 | |
5 | details/callbacks.h | |
6 | details/callbacks_v.h | |
7 | details/constructors.h | |
8 | details/conversions.h | |
9 | details/dispatchers.h | |
10 | details/metahelpers.h | |
11 | details/methods.h | |
12 | details/methods_v.h | |
13 | ) | |
14 | GENERATE_SOURCE_GROUPS(${CPPTCL_FILES}) | |
15 | ||
[2588] | 16 | IF(MSVC) |
[2621] | 17 | ADD_LIBRARY(cpptcl_orxonox STATIC ${CPPTCL_FILES}) |
[2624] | 18 | ELSE() |
[2621] | 19 | ADD_LIBRARY(cpptcl_orxonox SHARED ${CPPTCL_FILES}) |
[2624] | 20 | ENDIF() |
[1505] | 21 | |
[1810] | 22 | TARGET_LINK_LIBRARIES(cpptcl_orxonox |
[1505] | 23 | ${TCL_LIBRARY} |
24 | ) | |
[2510] | 25 | |
[2624] | 26 | IF(NOT WIN32) |
[2579] | 27 | INSTALL(TARGETS cpptcl_orxonox LIBRARY DESTINATION lib) |
[2624] | 28 | ENDIF() |
Note: See TracBrowser
for help on using the repository browser.