Changeset 2509 for code/branches/buildsystem2/src/core
- Timestamp:
- Dec 17, 2008, 8:59:48 PM (16 years ago)
- Location:
- code/branches/buildsystem2
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2
- Property svn:ignore deleted
- Property svn:mergeinfo changed
/code/branches/buildsystem (added) merged: 1875,1882-1886,1975-1982,1991,1999,2054,2061,2135,2137-2139,2197-2199,2204,2214-2220,2223-2224,2229,2233-2244,2248-2249,2252-2253,2260,2275
-
code/branches/buildsystem2/src/core/CMakeLists.txt
r2131 r2509 42 42 TclThreadManager.cc 43 43 44 tolua/tolua_bind.cc45 44 ) 46 45 47 46 ADD_SOURCE_DIRECTORY(CORE_SRC_FILES input) 48 47 49 GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION) 50 ADD_CUSTOM_COMMAND( 51 OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h 52 COMMAND ${TOLUA_EXE} -n Core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg 53 DEPENDS 54 tolua_orxonox 55 tolua/tolua.pkg 56 LuaBind.h 57 CommandExecutor.h 58 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib 59 ) 48 INCLUDE(UseTolua) 49 TOLUA(Core CORE_SRC_FILES INPUTFILES LuaBind.h CommandExecutor.h) 60 50 61 51 ADD_LIBRARY(core SHARED ${CORE_SRC_FILES}) 62 52 63 53 TARGET_LINK_LIBRARIES(core 64 ${OGRE_LIBRAR IES}65 ${Boost_ thread_LIBRARIES}66 ${Boost_ filesystem_LIBRARIES}67 lua_orxonox54 ${OGRE_LIBRARY} 55 ${Boost_THREAD_LIBRARY} 56 ${Boost_FILESYSTEM_LIBRARY} 57 ${LUA_LIBRARIES} 68 58 cpptcl_orxonox 69 59 ois_orxonox -
code/branches/buildsystem2/src/core/CommandExecutor.h
r1771 r2509 36 36 #include "CommandEvaluation.h" 37 37 38 namespace orxonox // tolua_export 39 { // tolua_export 38 // tolua_begin 39 namespace orxonox 40 { 40 41 class _CoreExport CommandExecutor 41 /*42 class CommandExecutor { // tolua_export43 */44 42 { 43 // tolua_end 45 44 public: 46 45 static bool execute(const std::string& command, bool useTcl = true); // tolua_export -
code/branches/buildsystem2/src/core/LuaBind.cc
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/code/branches/buildsystem/src/core/Script.cc merged eligible /code/branches/questsystem2/src/core/LuaBind.cc merged eligible /code/branches/buildsystem/src/core/LuaBind.cc 1874-2276 /code/branches/ceguilua/src/core/LuaBind.cc 1802-1808 /code/branches/core3/src/core/LuaBind.cc 1572-1739 /code/branches/gcc43/src/core/LuaBind.cc 1580 /code/branches/gui/src/core/LuaBind.cc 1635-1723 /code/branches/input/src/core/LuaBind.cc 1629-1636 /code/branches/objecthierarchy/src/core/LuaBind.cc 1911-2085,2100,2110-2169 /code/branches/pickups/src/core/LuaBind.cc 1926-2086 /code/branches/questsystem/src/core/LuaBind.cc 1894-2088 /code/branches/script_trigger/src/core/LuaBind.cc 1295-1953,1955 /code/branches/weapon/src/core/LuaBind.cc 1925-2094
r2087 r2509 32 32 #include <map> 33 33 34 #include "lua/lua.hpp" 35 #include "tolua/tolua++.h" 36 #include "tolua/tolua_bind.h" 34 extern "C" { 35 #include "lua.h" 36 #include "lualib.h" 37 } 38 #include "tolua++.h" 39 #include "core/ToluaBindCore.h" 37 40 #include "util/String.h" 38 41 #include "CoreIncludes.h" -
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
code/branches/buildsystem2/src/core/LuaBind.h
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/code/branches/buildsystem/src/core/Script.h merged eligible /code/branches/questsystem2/src/core/LuaBind.h merged eligible /code/branches/buildsystem/src/core/LuaBind.h 1874-2276 /code/branches/ceguilua/src/core/LuaBind.h 1802-1808 /code/branches/core3/src/core/LuaBind.h 1572-1739 /code/branches/gcc43/src/core/LuaBind.h 1580 /code/branches/gui/src/core/LuaBind.h 1635-1723 /code/branches/input/src/core/LuaBind.h 1629-1636 /code/branches/objecthierarchy/src/core/LuaBind.h 1911-2085,2100,2110-2169 /code/branches/pickups/src/core/LuaBind.h 1926-2086 /code/branches/questsystem/src/core/LuaBind.h 1894-2088 /code/branches/script_trigger/src/core/LuaBind.h 1295-1953,1955 /code/branches/weapon/src/core/LuaBind.h 1925-2094
r2087 r2509 39 39 40 40 extern "C" { 41 #include <lua /lua.h>41 #include <lua.h> 42 42 } 43 43 … … 45 45 #include <string> 46 46 47 namespace orxonox // tolua_export 48 { // tolua_export 47 // tolua_begin 48 namespace orxonox 49 { 49 50 class _CoreExport LuaBind 50 51 { 51 /* 52 class LuaBind { // tolua_export 53 */ 52 53 // tolua_end 54 54 struct LoadS { 55 55 const char *s; -
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
code/branches/buildsystem2/src/core/XMLIncludes.h
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.