Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/network/src/tolua/CMakeLists.txt @ 1494

Last change on this file since 1494 was 1494, checked in by rgrieder, 16 years ago
  • set the svn:eol-style property to all files so, that where ever you check out, you'll get the right line endings (had to change every file with mixed endings to windows in order to set the property)
  • Property svn:eol-style set to native
File size: 360 bytes
Line 
1SET (TOLUALIB_SRC_FILES
2  tolua_event.c
3  tolua_is.c
4  tolua_map.c
5  tolua_push.c
6  tolua_to.c
7)
8
9ADD_LIBRARY (tolualib ${TOLUALIB_SRC_FILES})
10
11TARGET_LINK_LIBRARIES (tolualib
12  ${Lua_LIBRARIES}
13)
14
15SET (TOLUAEXE_SRC_FILES
16  tolua.c
17  toluabind.c
18)
19
20ADD_EXECUTABLE (tolua ${TOLUAEXE_SRC_FILES})
21
22TARGET_LINK_LIBRARIES (tolua
23  ${Lua_LIBRARIES}
24  tolualib
25  m
26)
Note: See TracBrowser for help on using the repository browser.