Changeset 2639 for code/branches/buildsystem2/src/util
- Timestamp:
- Feb 8, 2009, 12:10:57 AM (16 years ago)
- Location:
- code/branches/buildsystem2/src/util
- Files:
-
- 1 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2/src/util/CMakeLists.txt
r2638 r2639 25 25 Exception.h 26 26 ExprParser.h 27 Integers.h28 27 Math.h 29 28 MathConvert.h … … 54 53 #SET(UTIL_FILES ${UTIL_SRC_FILES} ${UTIL_HDR_FILES}) 55 54 GENERATE_SOURCE_GROUPS(${UTIL_FILES}) 56 # Also add OrxonoxConfig.h to have it least somewhere in the IDE 57 LIST(APPEND UTIL_FILES ${CMAKE_BINARY_DIR}/src/OrxonoxConfig.h) 58 SOURCE_GROUP("" FILES ${CMAKE_BINARY_DIR}/src/OrxonoxConfig.h) 55 # Also add OrxonoxConfig to have it least somewhere in the IDE 56 LIST(APPEND UTIL_FILES 57 ${CMAKE_BINARY_DIR}/src/OrxonoxConfig.h 58 ${CMAKE_SOURCE_DIR}/src/OrxonoxConfig.h.in 59 ) 60 SOURCE_GROUP("" FILES 61 ${CMAKE_BINARY_DIR}/src/OrxonoxConfig.h 62 ${CMAKE_SOURCE_DIR}/src/OrxonoxConfig.h.in 63 ) 59 64 60 65 IF(NOT GCC_SYSTEM_HEADER_SUPPORT) -
code/branches/buildsystem2/src/util/CRC32.h
r2171 r2639 32 32 #include "UtilPrereqs.h" 33 33 #include <iostream> 34 #include "Integers.h"35 34 36 35 namespace orxonox -
code/branches/buildsystem2/src/util/Clipboard.cc
r2171 r2639 36 36 #include "Clipboard.h" 37 37 38 #if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN3238 #ifdef ORXONOX_PLATFORM_WINDOWS 39 39 40 40 ///////////// … … 104 104 } 105 105 106 #else /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32*/106 #else /* ORXONOX_PLATFORM_WINDOWS */ 107 107 108 108 ///////////// … … 135 135 } 136 136 137 #endif /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32*/137 #endif /* ORXONOX_PLATFORM_WINDOWS */ -
code/branches/buildsystem2/src/util/Convert.h
r2171 r2639 50 50 // This is however exactly what convertValue does, so we need to suppress these warnings. 51 51 // They only occur when using the ImplicitConversion template. 52 #if ORXONOX_COMPILER == ORXONOX_COMPILER_GNUC52 #ifdef ORXONOX_COMPILER_GCC 53 53 # pragma GCC system_header 54 54 #endif … … 63 63 64 64 // disable warnings about possible loss of data 65 #if ORXONOX_COMPILER ==ORXONOX_COMPILER_MSVC65 #ifdef ORXONOX_COMPILER_MSVC 66 66 # pragma warning(push) 67 67 # pragma warning(disable:4244) … … 88 88 } 89 89 90 #if ORXONOX_COMPILER ==ORXONOX_COMPILER_MSVC90 #ifdef ORXONOX_COMPILER_MSVC 91 91 # pragma warning(pop) 92 92 #endif -
code/branches/buildsystem2/src/util/Math.h
r2171 r2639 52 52 53 53 //Get around Windows hackery 54 #if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN3254 #ifdef ORXONOX_PLATFORM_WINDOWS 55 55 # ifdef max 56 56 # undef max -
code/branches/buildsystem2/src/util/SignalHandler.cc
r2596 r2639 45 45 } 46 46 47 #if ORXONOX_PLATFORM ==ORXONOX_PLATFORM_LINUX47 #ifdef ORXONOX_PLATFORM_LINUX 48 48 49 49 #include <wait.h> … … 358 358 } 359 359 360 #endif /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_LINUX */360 #endif /* ORXONOX_PLATFORM_LINUX */ -
code/branches/buildsystem2/src/util/SignalHandler.h
r2596 r2639 45 45 } 46 46 47 #if ORXONOX_PLATFORM ==ORXONOX_PLATFORM_LINUX47 #ifdef ORXONOX_PLATFORM_LINUX 48 48 #include <signal.h> 49 49 … … 97 97 } 98 98 99 #else /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_LINUX */99 #else /* ORXONOX_PLATFORM_LINUX */ 100 100 101 101 namespace orxonox … … 114 114 } 115 115 116 #endif /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_LINUX */116 #endif /* ORXONOX_PLATFORM_LINUX */ 117 117 118 118 #endif /* _SignalHandler_H__ */ -
code/branches/buildsystem2/src/util/Sleep.h
r2619 r2639 38 38 #include "UtilPrereqs.h" 39 39 40 #if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN3240 #ifdef ORXONOX_PLATFORM_WINDOWS 41 41 #include <winbase.h> 42 42 -
code/branches/buildsystem2/src/util/UtilPrereqs.h
r2619 r2639 40 40 // Shared library settings 41 41 //----------------------------------------------------------------------- 42 #if (ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32) && !defined( UTIL_STATIC_BUILD )42 #if defined(ORXONOX_PLATFORM_WINDOWS) && !defined( UTIL_STATIC_BUILD ) 43 43 # ifdef UTIL_SHARED_BUILD 44 44 # define _UtilExport __declspec(dllexport)
Note: See TracChangeset
for help on using the changeset viewer.