Changeset 1153 for code/trunk/src
- Timestamp:
- Apr 24, 2008, 10:35:53 AM (17 years ago)
- Location:
- code/trunk/src
- Files:
-
- 1 deleted
- 5 edited
- 19 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/CMakeLists.txt
r1115 r1153 1 1 INCLUDE_DIRECTORIES(.) 2 2 INCLUDE_DIRECTORIES(orxonox) 3 INCLUDE_DIRECTORIES( tolua)3 INCLUDE_DIRECTORIES(util/tolua) 4 4 5 ADD_SUBDIRECTORY(tolua)6 5 ADD_SUBDIRECTORY(util) 7 6 ADD_SUBDIRECTORY(core) -
code/trunk/src/core/CMakeLists.txt
r1126 r1153 26 26 Tickable.cc 27 27 Script.cc 28 tolua/tolua_bind.cc 29 #tolua/tolua_bind.h 30 ) 31 32 #SET_SOURCE_FILES_PROPERTIES(tolua/tolua_bind.h 33 # PROPERTIES 34 # OBJECT_DEPENDS tolua/tolua_bind.h 35 # OBJECT_DEPENDS tolua/tolua_bind.cc 36 # GENERATED true 37 # HEADER_FILE_ONLY true 38 #) 39 40 GET_TARGET_PROPERTY(TOLUA_EXE tolua LOCATION) 41 ADD_CUSTOM_COMMAND( 42 OUTPUT tolua/tolua_bind.cc tolua/tolua_bind.h 43 COMMAND ${TOLUA_EXE} -n core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg 44 DEPENDS tolua 45 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib 28 46 ) 29 47 … … 31 49 32 50 TARGET_LINK_LIBRARIES(core 33 util34 tolualib35 51 ${Lua_LIBRARIES} 36 52 ${OIS_LIBRARIES} 53 ${OGRE_LIBRARIES} 54 util 37 55 ) -
code/trunk/src/core/Script.cc
r1115 r1153 39 39 } 40 40 41 #include "tolua /tolua++.h"41 #include "tolua++.h" 42 42 #include "tolua/tolua_bind.h" 43 43 … … 60 60 luaopen_debug(luaState_); 61 61 #endif 62 tolua_ orxonox_open(luaState_);62 tolua_core_open(luaState_); 63 63 output_ = ""; 64 64 } -
code/trunk/src/orxonox/CMakeLists.txt
r1070 r1153 30 30 # objects/weapon/BulletManager.cc 31 31 # objects/weapon/WeaponStation.cc 32 tolua/tolua_bind.cc 33 # tolua/tolua_bind.h 32 34 ) 33 35 36 #SET_SOURCE_FILES_PROPERTIES(tolua/tolua_bind.h 37 # PROPERTIES 38 # OBJECT_DEPENDS tolua/tolua_bind.h 39 # OBJECT_DEPENDS tolua/tolua_bind.cc 40 # GENERATED true 41 # HEADER_FILE_ONLY true 42 #) 43 44 GET_TARGET_PROPERTY(TOLUA_EXE tolua LOCATION) 45 ADD_CUSTOM_COMMAND( 46 OUTPUT tolua/tolua_bind.cc tolua/tolua_bind.h 47 COMMAND ${TOLUA_EXE} -n orxonox -o ../../src/orxonox/tolua/tolua_bind.cc -H ../../src/orxonox/tolua/tolua_bind.h ../../src/orxonox/tolua/tolua.pkg 48 DEPENDS tolua 49 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib 50 ) 51 34 52 ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} ) 35 53 -
code/trunk/src/util/CMakeLists.txt
r1120 r1153 1 AUX_SOURCE_DIRECTORY(tinyxml TINYXML_SRC_FILES)2 3 1 SET(UTIL_SRC_FILES 4 2 ArgReader.cc 3 Clipboard.cc 4 ExprParser.cc 5 5 Math.cc 6 String.cc7 Clipboard.cc8 SubString.cc9 ExprParser.cc10 6 MultiTypePrimitive.cc 11 7 MultiTypeString.cc 12 8 MultiTypeMath.cc 13 ${TINYXML_SRC_FILES} 9 String.cc 10 SubString.cc 11 12 tinyxml/ticpp.cc 13 tinyxml/tinystr.cc 14 tinyxml/tinyxml.cc 15 tinyxml/tinyxmlerror.cc 16 tinyxml/tinyxmlparser.cc 17 18 tolua/tolua_event.c 19 tolua/tolua_is.c 20 tolua/tolua_map.c 21 tolua/tolua_push.c 22 tolua/tolua_to.c 14 23 ) 15 24 … … 22 31 TARGET_LINK_LIBRARIES(util 23 32 ${OGRE_LIBRARIES} 33 ${Lua_LIBRARIES} 24 34 ) 25 35 36 ADD_SUBDIRECTORY(tolua) 37
Note: See TracChangeset
for help on using the changeset viewer.