Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/console/CMakeLists.txt @ 1151

Last change on this file since 1151 was 1151, checked in by landauf, 16 years ago

added cpptcl and some first tests

File size: 2.6 KB
Line 
1PROJECT(Orxonox)
2
3#This sets where to look for modules (e.g. "Find*.cmake" files)
4SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
5
6#Check whether we are on a tardis box
7INCLUDE(CheckTardis)
8
9
10############## Testing options ##################
11
12OPTION(TESTING_ENABLED "Do you want to enable Testing")
13IF (TESTING_ENABLED)
14  ENABLE_TESTING()
15ENDIF(TESTING_ENABLED)
16
17OPTION(NETWORK_TESTING_ENABLED "Do you want to build network testing tools: i.e. chatclient chatserver and alike")
18
19
20########## Compiler/Linker options ##############
21
22# if on tardis change compiler and reset boost include directory
23IF(IS_TARDIS)
24  MESSAGE("System is a TARDIS: Setting Compiler to g++-4.1.1")
25  # force-set the compiler on tardis machines, as default points to g++-3.3
26  SET(CMAKE_CXX_COMPILER "g++-4.1.1")
27  # reset Boost serach path
28  SET(Boost_INCLUDE_DIR "/usr/pack/boost-1.34.1-sd/i686-debian-linux3.1/include")
29ELSE (IS_TARDIS)
30  SET(Boost_INCLUDE_DIR "/usr/include/boost")
31ENDIF(IS_TARDIS)
32
33#set binary output directories
34SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
35SET(LIBRARY_OUTPUT_PATH    ${PROJECT_SOURCE_DIR}/bin/lib)
36
37# global compiler/linker flags. force -O2!
38SET(CMAKE_C_FLAGS "$ENV{CFLAGS} -O2 -Wall -g -ggdb")
39SET(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} -O2 -Wall -g -ggdb")
40SET(CMAKE_LD_FLAGS "$ENV{LDFLAGS}")
41SET(CMAKE_EXE_LINKER_FLAGS " --no-undefined")
42SET(CMAKE_SHARED_LINKER_FLAGS " --no-undefined")
43SET(CMAKE_MODULE_LINKER_FLAGS " --no-undefined")
44
45#use 'cmake -D make_verb:1 path' to get verbose make output when compiling
46IF (MAKE_VERB)
47 SET(CMAKE_VERBOSE_MAKEFILE TRUE)
48ENDIF (MAKE_VERB)
49
50
51############### Library finding #################
52
53#Performs the search and sets the variables
54FIND_PACKAGE(OGRE)
55FIND_PACKAGE(OIS)
56# FIND_PACKAGE(CEGUI)
57# FIND_PACKAGE(CEGUI_OGRE)
58FIND_PACKAGE(ENet)
59FIND_PACKAGE(Boost REQUIRED thread)
60FIND_PACKAGE(OpenAL)
61FIND_PACKAGE(ALUT)
62FIND_PACKAGE(OggVorbis)
63FIND_PACKAGE(ZLIB)
64FIND_PACKAGE(Lua)
65FIND_PACKAGE(TCL)
66
67#Set the search paths for the linking
68LINK_DIRECTORIES(
69  ${OGRE_LIB_DIR}
70  ${OIS_LIB_DIR}
71#  ${CEGUI_LIB_DIR} ${CEGUI_OGRE_LIB_DIR}
72  ${ENet_LIBRARY}
73  ${Boost_LIBRARY_DIRS}
74  ${Zlib_LIBRARY_DIR}
75  ${TCL_LIBRARY}
76)
77
78#Set the search paths for include files
79INCLUDE_DIRECTORIES(
80  ${OGRE_INCLUDE_DIR}
81  ${OIS_INCLUDE_DIR}
82#  ${CEGUI_INCLUDE_DIR} ${CEGUI_OGRE_INCLUDE_DIR}
83  ${ENet_INCLUDE_DIR}
84  ${Boost_INCLUDE_DIRS}
85  ${OPENAL_INCLUDE_DIR}
86  ${ALUT_INCLUDE_DIR}
87  ${VORBIS_INCLUDE_DIR}
88  ${OGG_INCLUDE_DIR}
89  ${Lua_INCLUDE_DIR}
90  ${TCL_INCLUDE_PATH}
91)
92
93#add main source dir
94ADD_SUBDIRECTORY(src)
95
Note: See TracBrowser for help on using the repository browser.