- Timestamp:
- Jan 29, 2009, 11:20:37 PM (16 years ago)
- Location:
- code/branches/buildsystem2/src
- Files:
-
- 10 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2/src/CMakeLists.txt
r2610 r2619 1 ################ OrxonoxConfig.h ################ 2 3 # Copy and configure OrxonoxConfig which gets included in every file 4 CONFIGURE_FILE(OrxonoxConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/OrxonoxConfig.h) 5 1 6 # Set the search paths for include files 2 7 INCLUDE_DIRECTORIES( -
code/branches/buildsystem2/src/OrxonoxConfig.h.in
r2612 r2619 136 136 #endif 137 137 } 138 139 /* Set whether we must suffix "ceguilua/" for the CEGUILua.h include */ 140 #cmakedefine CEGUILUA_USE_INTERNAL_LIBRARY 138 141 139 142 //----------------------------------------------------------------------- -
code/branches/buildsystem2/src/audio/AudioPrereqs.h
r2171 r2619 35 35 #define _AudioPrereqs_H__ 36 36 37 #include " util/OrxonoxPlatform.h"37 #include "OrxonoxConfig.h" 38 38 39 39 //----------------------------------------------------------------------- -
code/branches/buildsystem2/src/core/CorePrereqs.h
r2087 r2619 35 35 #define _CorePrereqs_H__ 36 36 37 #include " util/OrxonoxPlatform.h"37 #include "OrxonoxConfig.h" 38 38 39 39 #include <string> -
code/branches/buildsystem2/src/network/NetworkPrereqs.h
r2171 r2619 35 35 #define _NetworkPrereqs_H__ 36 36 37 #include " util/OrxonoxPlatform.h"37 #include "OrxonoxConfig.h" 38 38 39 39 //----------------------------------------------------------------------- -
code/branches/buildsystem2/src/orxonox/Main.cc
r2103 r2619 38 38 #include <cassert> 39 39 40 #include " util/OrxonoxPlatform.h"40 #include "OrxonoxConfig.h" 41 41 #include "util/Debug.h" 42 42 #include "util/SignalHandler.h" -
code/branches/buildsystem2/src/orxonox/OrxonoxPrereqs.h
r2583 r2619 35 35 #define _OrxonoxPrereqs_H__ 36 36 37 #include " util/OrxonoxPlatform.h"37 #include "OrxonoxConfig.h" 38 38 39 39 //----------------------------------------------------------------------- -
code/branches/buildsystem2/src/tolua/CMakeLists.txt
r2599 r2619 9 9 ) 10 10 SET_TARGET_PROPERTIES(tolualib_orxonox PROPERTIES DEFINE_SYMBOL "TOLUA_SHARED_BUILD") 11 TARGET_LINK_LIBRARIES(tolualib_orxonox ${LUA_LIBRAR Y})11 TARGET_LINK_LIBRARIES(tolualib_orxonox ${LUA_LIBRARIES}) 12 12 13 13 IF (NOT WIN32) -
code/branches/buildsystem2/src/util/Integers.h
r1755 r2619 36 36 #define _Integers_H__ 37 37 38 #include " OrxonoxPlatform.h"38 #include "UtilPrereqs.h" 39 39 40 40 /* Define fixed with integers -
code/branches/buildsystem2/src/util/Sleep.h
r2171 r2619 36 36 #define _Sleep_H__ 37 37 38 #include " OrxonoxPlatform.h"38 #include "UtilPrereqs.h" 39 39 40 40 #if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 -
code/branches/buildsystem2/src/util/UtilPrereqs.h
r2171 r2619 35 35 #define _UtilPrereqs_H__ 36 36 37 #include " util/OrxonoxPlatform.h"37 #include "OrxonoxConfig.h" 38 38 39 39 //-----------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.