[1505] | 1 | PROJECT(Orxonox) |
---|
| 2 | |
---|
| 3 | cmake_minimum_required(VERSION 2.4) |
---|
| 4 | |
---|
[1776] | 5 | IF (COMMAND cmake_policy) |
---|
[1505] | 6 | cmake_policy(SET CMP0003 NEW) |
---|
[1776] | 7 | ENDIF (COMMAND cmake_policy) |
---|
[1505] | 8 | |
---|
[1872] | 9 | # Allow for simple IF constructs (makes code a lot more readable) |
---|
| 10 | #SET(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true) |
---|
| 11 | |
---|
[1776] | 12 | # This sets where to look for modules (e.g. "Find*.cmake" files) |
---|
[1505] | 13 | SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) |
---|
| 14 | |
---|
[1776] | 15 | # Check whether we are on a tardis box |
---|
[1505] | 16 | INCLUDE(CheckTardis) |
---|
| 17 | |
---|
| 18 | |
---|
| 19 | ############## Testing options ################## |
---|
| 20 | |
---|
| 21 | OPTION(TESTING_ENABLED "Do you want to enable Testing") |
---|
| 22 | IF (TESTING_ENABLED) |
---|
| 23 | ENABLE_TESTING() |
---|
| 24 | ENDIF(TESTING_ENABLED) |
---|
| 25 | |
---|
[1776] | 26 | OPTION (NETWORK_TESTING_ENABLED "Do you want to build network testing tools: i.e. chatclient chatserver and alike") |
---|
| 27 | OPTION (NETWORKTRAFFIC_TESTING_ENABLED "Do you want to build dummyserver4 and dummyclient4") |
---|
[1505] | 28 | |
---|
| 29 | |
---|
| 30 | ########## Compiler/Linker options ############## |
---|
| 31 | |
---|
| 32 | # if on tardis change compiler and reset boost include directory |
---|
| 33 | IF(IS_TARDIS) |
---|
| 34 | MESSAGE("System is a TARDIS: Setting Compiler to g++-4.1.1") |
---|
[1776] | 35 | # Force-set the compiler on tardis machines, as default points to g++-3.3 |
---|
[1505] | 36 | SET(CMAKE_CXX_COMPILER "g++-4.1.1") |
---|
[1776] | 37 | # Reset Boost serach path |
---|
[1505] | 38 | SET(Boost_INCLUDE_DIR "/usr/pack/boost-1.34.1-sd/i686-debian-linux3.1/include") |
---|
| 39 | ELSE (IS_TARDIS) |
---|
[1776] | 40 | IF (NOT WIN32) |
---|
| 41 | SET(Boost_INCLUDE_DIR "/usr/include/boost") |
---|
| 42 | ENDIF (NOT WIN32) |
---|
[1505] | 43 | ENDIF(IS_TARDIS) |
---|
| 44 | |
---|
[1776] | 45 | # Set binary output directories |
---|
[1505] | 46 | SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin) |
---|
| 47 | SET(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin/lib) |
---|
| 48 | |
---|
[1776] | 49 | # Global compiler/linker flags. force -O2! |
---|
[1874] | 50 | SET(CMAKE_C_FLAGS "$ENV{CFLAGS} -O0 -Wall -g -ggdb") |
---|
| 51 | SET(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} -O0 -Wall -g -ggdb") |
---|
[1889] | 52 | #SET(CMAKE_C_FLAGS "$ENV{CFLAGS} -O3 -s") |
---|
| 53 | #SET(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} -O3 -s") |
---|
[1505] | 54 | |
---|
| 55 | SET(CMAKE_LD_FLAGS "$ENV{LDFLAGS}") |
---|
| 56 | SET(CMAKE_EXE_LINKER_FLAGS " --no-undefined") |
---|
| 57 | SET(CMAKE_SHARED_LINKER_FLAGS " --no-undefined") |
---|
| 58 | SET(CMAKE_MODULE_LINKER_FLAGS " --no-undefined") |
---|
| 59 | |
---|
[1776] | 60 | # Use 'cmake -D make_verb:1 path' to get verbose make output when compiling |
---|
[1505] | 61 | IF (MAKE_VERB) |
---|
| 62 | SET(CMAKE_VERBOSE_MAKEFILE TRUE) |
---|
| 63 | ENDIF (MAKE_VERB) |
---|
| 64 | |
---|
| 65 | |
---|
| 66 | ############### Library finding ################# |
---|
| 67 | |
---|
[1776] | 68 | # Uncomment the following line if you want the include and library paths to be shown |
---|
| 69 | # Alternatively use the "-D VERBOSE_FIND:BOOL=true" option when executing cmake |
---|
| 70 | |
---|
| 71 | # SET (VERBOSE_FIND true) |
---|
| 72 | |
---|
[1872] | 73 | # Set the library directory when using precompiled tarballs for the dependencies under windows |
---|
| 74 | IF (WIN32) |
---|
| 75 | IF (MSVC) |
---|
| 76 | IF ($ENV{ORXONOX_DEV}) |
---|
| 77 | SET (DEPENDENCY_DIR ${CMAKE_SOURCE_DIR}/../lib_dist/dependencies/) |
---|
| 78 | ELSE ($ENV{ORXONOX_DEV}) |
---|
| 79 | SET (DEPENDENCY_DIR ${CMAKE_SOURCE_DIR}/dependencies/) |
---|
| 80 | ENDIF ($ENV{ORXONOX_DEV}) |
---|
| 81 | SET(Boost_LIB_SUFFIX_DEBUG vc80-mt-gd-1_35) |
---|
| 82 | ENDIF (MSVC) |
---|
| 83 | ENDIF (WIN32) |
---|
| 84 | MESSAGE(STATUS ${DEPENDENCY_DIR}) |
---|
| 85 | |
---|
[1776] | 86 | # Performs the search and sets the variables |
---|
[1505] | 87 | FIND_PACKAGE(OGRE) |
---|
[1755] | 88 | FIND_PACKAGE(CEGUI) |
---|
[1505] | 89 | # FIND_PACKAGE(CEGUI_OGRE) |
---|
| 90 | FIND_PACKAGE(ENet) |
---|
[1535] | 91 | FIND_PACKAGE(Boost REQUIRED thread filesystem) |
---|
[1505] | 92 | FIND_PACKAGE(OpenAL) |
---|
| 93 | FIND_PACKAGE(ALUT) |
---|
| 94 | FIND_PACKAGE(OggVorbis) |
---|
| 95 | FIND_PACKAGE(ZLIB) |
---|
[1810] | 96 | #FIND_PACKAGE(Lua) |
---|
[1505] | 97 | FIND_PACKAGE(TCL) |
---|
| 98 | FIND_PACKAGE(DirectX) |
---|
| 99 | |
---|
[1776] | 100 | # Set the search paths for the linking |
---|
[1505] | 101 | LINK_DIRECTORIES( |
---|
| 102 | ${OGRE_LIB_DIR} |
---|
[1776] | 103 | ${CEGUI_LIB_DIR} |
---|
[1810] | 104 | # ${CEGUI_SCRIPT_LIB_DIR} |
---|
[1776] | 105 | # ${CEGUI_OGRE_LIB_DIR} |
---|
[1505] | 106 | ${ENet_LIBRARY} |
---|
| 107 | ${Boost_LIBRARY_DIRS} |
---|
| 108 | ${Zlib_LIBRARY_DIR} |
---|
| 109 | ${TCL_LIBRARY} |
---|
| 110 | ) |
---|
| 111 | |
---|
[1776] | 112 | # Set the search paths for include files |
---|
[1505] | 113 | INCLUDE_DIRECTORIES( |
---|
| 114 | ${OGRE_INCLUDE_DIR} |
---|
[1776] | 115 | ${CEGUI_INCLUDE_DIR} |
---|
| 116 | # ${CEGUI_OGRE_INCLUDE_DIR} |
---|
[1505] | 117 | ${ENet_INCLUDE_DIR} |
---|
| 118 | ${Boost_INCLUDE_DIRS} |
---|
| 119 | ${OPENAL_INCLUDE_DIR} |
---|
| 120 | ${ALUT_INCLUDE_DIR} |
---|
| 121 | ${VORBIS_INCLUDE_DIR} |
---|
| 122 | ${OGG_INCLUDE_DIR} |
---|
[1810] | 123 | # ${Lua_INCLUDE_DIR} |
---|
[1505] | 124 | ${TCL_INCLUDE_PATH} |
---|
| 125 | ${DirectX_INCLUDE_DIR} |
---|
| 126 | ${ZLIB_INCLUDE_DIR} |
---|
| 127 | ) |
---|
| 128 | |
---|
[1776] | 129 | # Add main source dir |
---|
[1505] | 130 | ADD_SUBDIRECTORY(src) |
---|
| 131 | |
---|