Last change
on this file since 2194 was
1809,
checked in by rgrieder, 16 years ago
|
removed version specific lua folders
removed lua 5.0 package file int tolua/ folder
commented script section in FindCEGUI.cmake
|
-
Property svn:eol-style set to
native
|
File size:
992 bytes
|
Line | |
---|
1 | SET (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 | |
---|
9 | ADD_LIBRARY (tolualib_orxonox SHARED ${TOLUALIB_SRC_FILES}) |
---|
10 | |
---|
11 | TARGET_LINK_LIBRARIES (tolualib_orxonox |
---|
12 | lua_orxonox |
---|
13 | ) |
---|
14 | |
---|
15 | |
---|
16 | SET (TOLUAGEN_SRC_FILES |
---|
17 | tolua.c |
---|
18 | toluabind.c |
---|
19 | ) |
---|
20 | |
---|
21 | ADD_EXECUTABLE (toluagen_orxonox ${TOLUAGEN_SRC_FILES}) |
---|
22 | |
---|
23 | TARGET_LINK_LIBRARIES (toluagen_orxonox |
---|
24 | lua_orxonox |
---|
25 | tolualib_orxonox |
---|
26 | m |
---|
27 | ) |
---|
28 | |
---|
29 | |
---|
30 | SET (TOLUA_PACKAGE "../../src/tolua/tolua-5.1.pkg") |
---|
31 | GET_TARGET_PROPERTY(TOLUAGEN_EXE toluagen_orxonox LOCATION) |
---|
32 | ADD_CUSTOM_COMMAND( |
---|
33 | OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/toluabind_orxonox.c |
---|
34 | COMMAND ${TOLUAGEN_EXE} -n tolua -o ../../src/tolua/toluabind_orxonox.c -H ../../src/tolua/toluabind_orxonox.h ${TOLUA_PACKAGE} |
---|
35 | DEPENDS toluagen_orxonox |
---|
36 | WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib |
---|
37 | ) |
---|
38 | |
---|
39 | SET (TOLUAEXE_SRC_FILES |
---|
40 | tolua.c |
---|
41 | toluabind_orxonox.c |
---|
42 | ) |
---|
43 | |
---|
44 | ADD_EXECUTABLE (tolua_orxonox ${TOLUAEXE_SRC_FILES}) |
---|
45 | |
---|
46 | TARGET_LINK_LIBRARIES (tolua_orxonox |
---|
47 | lua_orxonox |
---|
48 | tolualib_orxonox |
---|
49 | m |
---|
50 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.