Changeset 1127 for code/branches/cmake/src/core
- Timestamp:
- Apr 22, 2008, 1:37:42 PM (17 years ago)
- Location:
- code/branches/cmake/src/core
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cmake/src/core/CMakeLists.txt
r1124 r1127 26 26 Tickable.cc 27 27 Script.cc 28 tolua/tolua_bind.cc 29 ) 30 31 GET_TARGET_PROPERTY(TOLUA_EXE tolua LOCATION) 32 ADD_CUSTOM_COMMAND( 33 OUTPUT tolua/tolua_bind.cc 34 COMMAND ${TOLUA_EXE} -n core -o core/tolua/tolua_bind.cc -H core/tolua/tolua_bind.h core/tolua/tolua.pkg 35 DEPENDS tolua 36 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/src 28 37 ) 29 38 … … 31 40 32 41 TARGET_LINK_LIBRARIES(core 33 util34 tolualib35 42 ${Lua_LIBRARIES} 36 43 ${OIS_LIBRARIES} 44 ${OGRE_LIBRARIES} 45 util 37 46 ) -
code/branches/cmake/src/core/InputManager.cc
r1089 r1127 93 93 paramList.insert(std::make_pair(std::string("WINDOW"), windowHndStr.str())); 94 94 95 #if defined OIS_LINUX_PLATFORM96 paramList.insert(std::make_pair(std::string("XAutoRepeatOn"), std::string("true")));97 #endif95 //#if defined OIS_LINUX_PLATFORM 96 // paramList.insert(std::make_pair(std::string("XAutoRepeatOn"), std::string("true"))); 97 //#endif 98 98 99 99 try -
code/branches/cmake/src/core/Script.cc
r1122 r1127 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 }
Note: See TracChangeset
for help on using the changeset viewer.