Changeset 7941 for code/branches/kicklib/src/libraries
- Timestamp:
- Feb 20, 2011, 10:49:06 PM (14 years ago)
- Location:
- code/branches/kicklib/src/libraries/core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib/src/libraries/core/CMakeLists.txt
r7284 r7941 93 93 ${CEGUI_LIBRARY} 94 94 ${CEGUILUA_LIBRARY} 95 ${CEGUI_TOLUA_LIBRARY} 95 96 ${LUA_LIBRARIES} 96 97 cpptcl_orxonox … … 98 99 ois_orxonox 99 100 tinyxml_orxonox 100 tolua_orxonox101 101 util 102 102 SOURCE_FILES -
code/branches/kicklib/src/libraries/core/GUIManager.cc
r7939 r7941 30 30 #include "GUIManager.h" 31 31 32 #include <memory> 32 33 #include <boost/bind.hpp> 33 #include <memory>34 34 35 35 #include <CEGUIDefaultLogger.h> … … 43 43 #include <elements/CEGUIListbox.h> 44 44 #include <elements/CEGUIListboxItem.h> 45 46 #include <CEGUILua.h> 45 47 #include <ogreceguirenderer/OgreCEGUIRenderer.h> 46 47 #include "SpecialConfig.h" // Configures the macro below48 #ifdef CEGUILUA_USE_INTERNAL_LIBRARY49 # include <ceguilua/CEGUILua.h>50 #else51 # include <CEGUILua.h>52 #endif53 48 54 49 #include "util/Clock.h" -
code/branches/kicklib/src/libraries/core/LuaState.cc
r7284 r7941 30 30 #include "LuaState.h" 31 31 32 #include <tolua /tolua++.h>32 #include <tolua++.h> 33 33 extern "C" { 34 34 #include <lua.h>
Note: See TracChangeset
for help on using the changeset viewer.