Changeset 1810 for code/trunk/src/orxonox
- Timestamp:
- Sep 21, 2008, 8:44:25 PM (16 years ago)
- Location:
- code/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/ceguilua (added) merged: 1803-1808
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/CMakeLists.txt
r1755 r1810 66 66 ) 67 67 68 GET_TARGET_PROPERTY(TOLUA_EXE tolua LOCATION)68 GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION) 69 69 ADD_CUSTOM_COMMAND( 70 70 OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc … … 97 97 TARGET_LINK_LIBRARIES( orxonox 98 98 ${OGRE_LIBRARIES} 99 ${Lua_LIBRARIES}100 99 ${CEGUI_LIBRARIES} 101 ${CEGUI_SCRIPT_LIBRARIES} 102 tinyxml 103 tolualib 100 lua_orxonox 101 ceguilua_orxonox 102 tinyxml_orxonox 103 tolualib_orxonox 104 104 ois_orxonox 105 105 util -
code/trunk/src/orxonox/OrxonoxStableHeaders.h
r1781 r1810 37 37 #include "util/OrxonoxPlatform.h" 38 38 39 #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC && !defined(ORXONOX_DISABLE_PCH) && 039 #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC && !defined(ORXONOX_DISABLE_PCH) 40 40 41 41 // including std headers here is useless since they're already precompiled -
code/trunk/src/orxonox/gui/GUIManager.cc
r1776 r1810 39 39 #include <OgreRoot.h> 40 40 #include <CEGUI.h> 41 #include <CEGUILua.h>41 #include "ceguilua/CEGUILua.h" 42 42 #include "util/Exception.h" 43 43 #include "core/input/InputManager.h" … … 50 50 #include "OgreCEGUIRenderer.h" 51 51 52 extern "C" { 53 #include <lualib.h> 54 #include <lauxlib.h> 55 } 52 #include "lua/lua.hpp" 56 53 57 54 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.