Changeset 2641
- Timestamp:
- Feb 8, 2009, 11:52:37 PM (16 years ago)
- Location:
- code/branches/buildsystem2
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2/cmake/BuildConfigGCC.cmake
r2640 r2641 37 37 COMPARE_VERSION_STRINGS("${GCC_VERSION}" "4.0.0" _compare_result) 38 38 IF(_compare_result LESS 0) 39 SET(GCC_NO_SYSTEM_HEADER_SUPPORT )39 SET(GCC_NO_SYSTEM_HEADER_SUPPORT TRUE) 40 40 ENDIF() 41 41 -
code/branches/buildsystem2/cmake/LibraryConfig.cmake
r2637 r2641 148 148 FIND_PACKAGE(Boost 1.34 REQUIRED thread filesystem date_time system) 149 149 ELSE(MSVC) 150 FIND_PACKAGE(Boost 1.34 REQUIRED thread filesystem )150 FIND_PACKAGE(Boost 1.34 REQUIRED thread filesystem system) 151 151 ENDIF(MSVC) 152 152 -
code/branches/buildsystem2/src/ceguilua/CMakeLists.txt
r2640 r2641 25 25 ${CEGUILUA_DIR}/CEGUILuaFunctor.cpp 26 26 ${CEGUILUA_DIR}/required.cpp 27 ${CEGUILUA_BINARY_DIR}/ lua_CEGUI.cpp27 ${CEGUILUA_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lua_CEGUI.cpp 28 28 29 29 ${CEGUILUA_DIR}/CEGUILua.h -
code/branches/buildsystem2/src/core/CMakeLists.txt
r2640 r2641 80 80 ${Boost_THREAD_LIBRARY} 81 81 ${Boost_FILESYSTEM_LIBRARY} 82 ${Boost_SYSTEM_LIBRARY} # MSVC only82 ${Boost_SYSTEM_LIBRARY} 83 83 ${Boost_DATE_TIME_LIBRARY} # MSVC only 84 84 ${LUA_LIBRARIES} -
code/branches/buildsystem2/src/core/LuaBind.cc
r2610 r2641 38 38 #include <tolua/tolua++.h> 39 39 40 #include " core/ToluaBindCore.h"40 #include "ToluaBindCore.h" 41 41 #include "util/String.h" 42 42 #include "CoreIncludes.h" -
code/branches/buildsystem2/src/cpptcl/changes_orxonox.diff
r2600 r2641 1 --- cpptcl.cc Wed Jan 28 20:56:06 2009 2 +++ cpptcl.cc Sat Jan 24 12:52:54 2009 1 --- cpptcl.cc So Feb 8 23:14:34 2009 2 +++ cpptcl.cc So Feb 8 23:13:07 2009 3 @@ -320,7 +320,7 @@ 4 5 post_process_policies(interp, pol, objv, false); 6 } 7 - catch (exception const &e) 8 + catch (std::exception const &e) 9 { 10 Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE); 11 return TCL_ERROR; 12 @@ -363,7 +363,7 @@ 13 14 post_process_policies(interp, pol, objv, true); 15 } 16 - catch (exception const &e) 17 + catch (std::exception const &e) 18 { 19 Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE); 20 return TCL_ERROR; 21 @@ -430,7 +430,7 @@ 22 Tcl_GetString(Tcl_GetObjResult(interp)), 23 object_handler, static_cast<ClientData>(chb), 0); 24 } 25 - catch (exception const &e) 26 + catch (std::exception const &e) 27 { 28 Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE); 29 return TCL_ERROR; 3 30 @@ -858,6 +858,18 @@ 4 31 owner_ = true; -
code/branches/buildsystem2/src/cpptcl/cpptcl.cc
r2601 r2641 321 321 post_process_policies(interp, pol, objv, false); 322 322 } 323 catch ( exception const &e)323 catch (std::exception const &e) 324 324 { 325 325 Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE); … … 364 364 post_process_policies(interp, pol, objv, true); 365 365 } 366 catch ( exception const &e)366 catch (std::exception const &e) 367 367 { 368 368 Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE); … … 431 431 object_handler, static_cast<ClientData>(chb), 0); 432 432 } 433 catch ( exception const &e)433 catch (std::exception const &e) 434 434 { 435 435 Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE); -
code/branches/buildsystem2/src/orxonox/gui/GUIManager.cc
r2621 r2641 51 51 #include "core/ConsoleCommand.h" 52 52 #include "core/Core.h" 53 #include " core/ToluaBindCore.h"53 #include "ToluaBindCore.h" 54 54 #include "ToluaBindOrxonox.h" 55 55 -
code/branches/buildsystem2/src/tolua/lua/package.lua
r2610 r2641 129 129 local header = gsub(flags.H, '^.-([%w_]*%.[%w_]*)$', '%1') 130 130 local package_lower = string.lower(self.name) 131 output('#include "'.. package_lower..'/'..header..'"\n')131 output('#include "'..header..'"\n') 132 132 end 133 133
Note: See TracChangeset
for help on using the changeset viewer.