Changeset 3167 for code/branches/pch/src/orxonox
- Timestamp:
- Jun 14, 2009, 6:11:32 PM (15 years ago)
- Location:
- code/branches/pch/src/orxonox
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/CMakeLists.txt
r3117 r3167 33 33 ADD_SUBDIRECTORY(tools) 34 34 35 # Translate argument 36 IF(ORXONOX_USE_WINMAIN) 37 SET(ORXONOX_WIN32 WIN32) 38 ENDIF() 39 35 40 ORXONOX_ADD_EXECUTABLE(orxonox 36 41 FIND_HEADER_FILES … … 44 49 OrxonoxPrecompiledHeaders.h 45 50 PCH_NO_DEFAULT 51 # When defined as WIN32 this removes the console window on Windows 52 ${ORXONOX_WIN32} 46 53 LINK_LIBRARIES 47 54 ${OGRE_LIBRARY} … … 85 92 STRING(REGEX REPLACE "^Visual Studio ([0-9][0-9]?) .*$" "\\1" 86 93 VISUAL_STUDIO_VERSION_SIMPLE "${CMAKE_GENERATOR}") 87 CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox.vcproj.user " "${CMAKE_CURRENT_BINARY_DIR}/orxonox.vcproj.user")94 CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox.vcproj.user.in" "${CMAKE_CURRENT_BINARY_DIR}/orxonox.vcproj.user") 88 95 ENDIF(MSVC) -
code/branches/pch/src/orxonox/Main.cc
r3110 r3167 28 28 */ 29 29 30 /** 31 @mainpage Orxonox Documentation 32 */ 33 34 /** 35 @file 36 @brief Entry point of the program. 37 */ 30 /** 31 @file 32 @brief 33 Entry point of the program. 34 */ 38 35 39 36 #include "OrxonoxConfig.h" … … 47 44 Main method. Game starts here (except for static initialisations). 48 45 */ 46 #ifdef ORXONOX_USE_WINMAIN 47 INT WINAPI WinMain(HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT) 48 #else 49 49 int main(int argc, char** argv) 50 #endif 50 51 { 51 52 { -
code/branches/pch/src/orxonox/sound/SoundBase.h
r3157 r3167 30 30 31 31 #include "OrxonoxPrereqs.h" 32 #include <cstring> // define NULL 32 33 33 34 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.