source:
code/trunk/src/tolua/CMakeLists.txt
@
1314
Last change on this file since 1314 was 1209, checked in by rgrieder, 17 years ago | |
---|---|
File size: 386 bytes |
Rev | Line | |
---|---|---|
[1209] | 1 | SET (TOLUALIB_SRC_FILES |
[1129] | 2 | tolua_event.c |
3 | tolua_is.c | |
4 | tolua_map.c | |
5 | tolua_push.c | |
6 | tolua_to.c | |
[1209] | 7 | ) |
8 | ||
9 | ADD_LIBRARY (tolualib ${TOLUALIB_SRC_FILES}) | |
10 | ||
11 | TARGET_LINK_LIBRARIES (tolualib | |
12 | ${Lua_LIBRARIES} | |
13 | ) | |
14 | ||
15 | SET (TOLUAEXE_SRC_FILES | |
16 | tolua.c | |
[1129] | 17 | toluabind.c |
18 | ) | |
19 | ||
[1209] | 20 | ADD_EXECUTABLE (tolua ${TOLUAEXE_SRC_FILES}) |
[1129] | 21 | |
[1209] | 22 | TARGET_LINK_LIBRARIES (tolua |
[1129] | 23 | ${Lua_LIBRARIES} |
[1209] | 24 | tolualib |
[1129] | 25 | m |
26 | ) |
Note: See TracBrowser
for help on using the repository browser.