| 1 | # | 
|---|
| 2 | #             ORXONOX - the hottest 3D action shooter ever to exist | 
|---|
| 3 | #                             > www.orxonox.net < | 
|---|
| 4 | # | 
|---|
| 5 | #        This program is free software; you can redistribute it and/or | 
|---|
| 6 | #         modify it under the terms of the GNU General Public License | 
|---|
| 7 | #        as published by the Free Software Foundation; either version 2 | 
|---|
| 8 | #            of the License, or (at your option) any later version. | 
|---|
| 9 | # | 
|---|
| 10 | #       This program is distributed in the hope that it will be useful, | 
|---|
| 11 | #        but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 12 | #        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
| 13 | #                 GNU General Public License for more details. | 
|---|
| 14 | # | 
|---|
| 15 | #   You should have received a copy of the GNU General Public License along | 
|---|
| 16 | #      with this program; if not, write to the Free Software Foundation, | 
|---|
| 17 | #     Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
|---|
| 18 | # | 
|---|
| 19 | # | 
|---|
| 20 | #  Author: | 
|---|
| 21 | #    Adrian Friedli | 
|---|
| 22 | #  Description: | 
|---|
| 23 | #    Sets the correct find script paths on the ETH Tardis workstations. | 
|---|
| 24 | #    Also sets the TARDIS variable. | 
|---|
| 25 | # | 
|---|
| 26 |  | 
|---|
| 27 | IF(LINUX AND EXISTS /etc/hostname) | 
|---|
| 28 | FILE(STRINGS /etc/hostname HOSTNAME LIMIT_COUNT 1) | 
|---|
| 29 | IF(${HOSTNAME} MATCHES "^tardis-[a-z][0-9][0-9]$") | 
|---|
| 30 | SET (TARDIS ON) | 
|---|
| 31 | ENDIF() | 
|---|
| 32 | ENDIF() | 
|---|
| 33 |  | 
|---|
| 34 | IF(TARDIS) | 
|---|
| 35 | MESSAGE(STATUS "Running on D-ITET isg.ee Tardis Computer. Using customized paths.") | 
|---|
| 36 |  | 
|---|
| 37 | #  SET(CMAKE_C_COMPILER "gcc-4.1.1") | 
|---|
| 38 | #  SET(CMAKE_CXX_COMPILER "g++-4.1.1") | 
|---|
| 39 |  | 
|---|
| 40 | # Note: When setting ENV${} variables, make sure to use quotes when | 
|---|
| 41 | #       having multiple directories. | 
|---|
| 42 | #SET(BOOST_INCLUDEDIR "/usr/pack/boost-1.42.0-bs/include") | 
|---|
| 43 | #SET(BOOST_LIBRARYDIR "/usr/pack/boost-1.42.0-bs/i686-debian-linux4.0/lib") | 
|---|
| 44 | SET(Boost_VERSION 104200) | 
|---|
| 45 | SET(Boost_INCLUDE_DIRS "/usr/pack/boost-1.42.0-bs/include" CACHE PATH "") | 
|---|
| 46 | SET(Boost_SYSTEM_LIBRARY_RELEASE "/usr/pack/boost-1.42.0-bs/amd64-debian-linux5.0/lib/libboost_system.so" CACHE PATH "") | 
|---|
| 47 | SET(Boost_SYSTEM_LIBRARY_DEBUG "/usr/pack/boost-1.42.0-bs/amd64-debian-linux5.0/lib/libboost_system-d.so" CACHE PATH "") | 
|---|
| 48 | SET(Boost_DATE_TIME_LIBRARY_RELEASE "/usr/pack/boost-1.42.0-bs/amd64-debian-linux5.0/lib/libboost_date_time.so" CACHE PATH "") | 
|---|
| 49 | SET(Boost_DATE_TIME_LIBRARY_DEBUG "/usr/pack/boost-1.42.0-bs/amd64-debian-linux5.0/lib/libboost_date_time-d.so" CACHE PATH "") | 
|---|
| 50 | SET(Boost_FILESYSTEM_LIBRARY_RELEASE "/usr/pack/boost-1.42.0-bs/amd64-debian-linux5.0/lib/libboost_filesystem.so" CACHE PATH "") | 
|---|
| 51 | SET(Boost_FILESYSTEM_LIBRARY_DEBUG "/usr/pack/boost-1.42.0-bs/amd64-debian-linux5.0/lib/libboost_filesystem-d.so" CACHE PATH "") | 
|---|
| 52 | SET(Boost_THREAD_LIBRARY_RELEASE "/usr/pack/boost-1.42.0-bs/amd64-debian-linux5.0/lib/libboost_thread-mt.so" CACHE PATH "") | 
|---|
| 53 | SET(Boost_THREAD_LIBRARY_DEBUG "/usr/pack/boost-1.42.0-bs/amd64-debian-linux5.0/lib/libboost_thread-mt-d.so" CACHE PATH "") | 
|---|
| 54 |  | 
|---|
| 55 | SET(Boost_SYSTEM_LIBRARY "debug;${Boost_SYSTEM_LIBRARY_DEBUG};optimized;${Boost_SYSTEM_LIBRARY_RELEASE}" CACHE PATH "" FORCE) | 
|---|
| 56 | SET(Boost_DATE_TIME_LIBRARY "debug;${Boost_DATE_TIME_LIBRARY_DEBUG};optimized;${Boost_DATE_TIME_LIBRARY_RELEASE}" CACHE PATH "" FORCE) | 
|---|
| 57 | SET(Boost_FILESYSTEM_LIBRARY "debug;${Boost_FILESYSTEM_LIBRARY_DEBUG};optimized;${Boost_FILESYSTEM_LIBRARY_RELEASE}" CACHE PATH "" FORCE) | 
|---|
| 58 | SET(Boost_THREAD_LIBRARY "debug;${Boost_THREAD_LIBRARY_DEBUG};optimized;${Boost_THREAD_LIBRARY_RELEASE}" CACHE PATH "" FORCE) | 
|---|
| 59 |  | 
|---|
| 60 | MARK_AS_ADVANCED( Boost_INCLUDE_DIRS ) | 
|---|
| 61 | MARK_AS_ADVANCED( Boost_SYSTEM_LIBRARY Boost_SYSTEM_LIBRARY_RELEASE Boost_SYSTEM_LIBRARY_DEBUG ) | 
|---|
| 62 | MARK_AS_ADVANCED( Boost_DATE_TIME_LIBRARY Boost_DATE_TIME_LIBRARY_RELEASE Boost_DATE_TIME_LIBRARY_DEBUG ) | 
|---|
| 63 | MARK_AS_ADVANCED( Boost_FILESYSTEM_LIBRARY Boost_FILESYSTEM_LIBRARY_RELEASE Boost_FILESYSTEM_LIBRARY_DEBUG ) | 
|---|
| 64 | MARK_AS_ADVANCED( Boost_THREAD_LIBRARY Boost_THREAD_LIBRARY_RELEASE Boost_THREAD_LIBRARY_DEBUG ) | 
|---|
| 65 |  | 
|---|
| 66 |  | 
|---|
| 67 | LIST(APPEND CMAKE_INCLUDE_PATH "/usr/pack/cegui-0.6.2-sd") | 
|---|
| 68 | LIST(APPEND CMAKE_LIBRARY_PATH "/usr/pack/cegui-0.6.2-sd/amd64-debian-linux5.0") | 
|---|
| 69 | LIST(APPEND CMAKE_INCLUDE_PATH "/usr/pack/ogre-1.6.1-sd") | 
|---|
| 70 | LIST(APPEND CMAKE_LIBRARY_PATH "/usr/pack/ogre-1.6.1-sd/amd64-debian-linux5.0") | 
|---|
| 71 |  | 
|---|
| 72 | #Solution to the problem that on the new tardis machines, we needed to run Orxonox with the command | 
|---|
| 73 | # bash && LD_LIBRARY_PATH=/usr/pack/libcg-1.5-sd/amd64-debian-linux3.1/lib/ ./run | 
|---|
| 74 | link_directories(/usr/pack/libcg-1.5-sd/amd64-debian-linux3.1/lib/) | 
|---|
| 75 | #SET(ENV{CEGUIDIR}    "/usr/pack/cegui-0.6.2-sd;/usr/pack/cegui-0.6.2-sd/i686-debian-linux5.0") | 
|---|
| 76 | #SET(ENV{ENETDIR}     "/usr/pack/enet-1.2-sd;/usr/pack/enet-1.2-sd/i686-debian-linux4.0") | 
|---|
| 77 | #SET(ENV{ALUTDIR}     "/usr/pack/openal-0.0.8-cl;/usr/pack/openal-0.0.8-cl/i686-debian-linux3.1") | 
|---|
| 78 | #SET(ENV{OGGDIR}      "/usr/pack/oggvorbis-1.0-ds;/usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0") | 
|---|
| 79 | #SET(ENV{VORBISDIR}   "/usr/pack/oggvorbis-1.0-ds;/usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0") | 
|---|
| 80 | #SET(ENV{LUA5.1_DIR}  "/usr/pack/lua-5.1.4-sd;/usr/pack/lua-5.1.4-sd/i686-debian-linux4.0") | 
|---|
| 81 | #SET(ENV{OGRE_HOME}   "/usr/pack/ogre-1.4.9-sd;/usr/pack/ogre-1.4.9-sd/i686-debian-linux4.0") | 
|---|
| 82 | #SET(ENV{OPENALDIR}   "/usr/pack/openal-0.0.8-cl;/usr/pack/openal-0.0.8-cl/i686-debian-linux3.1") | 
|---|
| 83 | #SET(TCL_INCLUDE_PATH "/usr/pack/tcltk-8.4.9.linux-mo/include") | 
|---|
| 84 |  | 
|---|
| 85 |  | 
|---|
| 86 | # Sandro fix: add flag that re-enables boost threads. This makes the combination | 
|---|
| 87 | #             of GCC version > 4.7 and older libboost work. See | 
|---|
| 88 | # http://stackoverflow.com/questions/5389853/doesnt-compile-if-included-boost-thread-in-linux-ubuntu10-10 | 
|---|
| 89 | #             for more information. | 
|---|
| 90 | ADD_COMPILER_FLAGS("-D_GLIBCXX__PTHREADS=1" CXX CACHE) | 
|---|
| 91 | ENDIF(TARDIS) | 
|---|