Changeset 1804 for code/branches/ceguilua/src/orxonox
- Timestamp:
- Sep 21, 2008, 5:10:08 PM (16 years ago)
- Location:
- code/branches/ceguilua/src/orxonox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ceguilua/src/orxonox/CMakeLists.txt
r1755 r1804 97 97 TARGET_LINK_LIBRARIES( orxonox 98 98 ${OGRE_LIBRARIES} 99 ${Lua_LIBRARIES}100 99 ${CEGUI_LIBRARIES} 101 100 ${CEGUI_SCRIPT_LIBRARIES} 102 tinyxml 103 tolualib 101 lua_orxonox 102 tinyxml_orxonox 103 tolualib_orxonox 104 104 ois_orxonox 105 105 util -
code/branches/ceguilua/src/orxonox/OrxonoxStableHeaders.h
r1781 r1804 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/branches/ceguilua/src/orxonox/gui/GUIManager.cc
r1776 r1804 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.