[2218] | 1 | # |
---|
| 2 | # ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | # > www.orxonox.net < |
---|
| 4 | # |
---|
| 5 | # |
---|
| 6 | # License notice: |
---|
| 7 | # |
---|
| 8 | # This program is free software; you can redistribute it and/or |
---|
| 9 | # modify it under the terms of the GNU General Public License |
---|
| 10 | # as published by the Free Software Foundation; either version 2 |
---|
| 11 | # of the License, or (at your option) any later version. |
---|
| 12 | # |
---|
| 13 | # This program is distributed in the hope that it will be useful, |
---|
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | # GNU General Public License for more details. |
---|
| 17 | # |
---|
| 18 | # You should have received a copy of the GNU General Public License |
---|
| 19 | # along with this program; if not, write to the Free Software |
---|
| 20 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | # |
---|
| 22 | # Author: |
---|
[2219] | 23 | # ... |
---|
[2218] | 24 | # Co-authors: |
---|
| 25 | # ... |
---|
| 26 | # |
---|
| 27 | |
---|
| 28 | ################# Win check ################## |
---|
| 29 | # Set the library directory when using precompiled tarballs for |
---|
| 30 | # the dependencies under windows |
---|
| 31 | ########################################### |
---|
[2197] | 32 | |
---|
[2218] | 33 | IF (MINGW) |
---|
| 34 | MESSAGE(STATUS "Running on MinGW. Using customized paths.") |
---|
[2510] | 35 | SET(MINGW_LIBRARY_DIR "${CMAKE_SOURCE_DIR}/../libs") |
---|
[2218] | 36 | #SET(Boost_ADDITIONAL_VERSIONS "1.36") |
---|
[2510] | 37 | SET(BOOST_INCLUDEDIR "${MINGW_LIBRARY_DIR}/boost_1_34_1") |
---|
| 38 | SET(BOOST_LIBRARYDIR "${MINGW_LIBRARY_DIR}/boost_1_34_1/stage/lib") |
---|
| 39 | SET(ENV{ENETDIR} "${MINGW_LIBRARY_DIR}/enet-1.1") |
---|
| 40 | SET(ENV{ALUTDIR} "${MINGW_LIBRARY_DIR}/freealut-1.1.0") |
---|
| 41 | SET(ENV{OPENALDIR} "${MINGW_LIBRARY_DIR}/openal-0.0.8/common") |
---|
| 42 | SET(ENV{LUA_DIR} "${MINGW_LIBRARY_DIR}/lua-5.1.3") |
---|
| 43 | SET(ENV{OGGVORBISDIR} "${MINGW_LIBRARY_DIR}/oggvorbis-1.1.3-1.2.0") |
---|
| 44 | SET(TCL_INCLUDE_PATH "${MINGW_LIBRARY_DIR}/tcl8.5.2/generic") |
---|
| 45 | SET(TCL_LIBRARY_PATH "${MINGW_LIBRARY_DIR}/tcl8.5.2/win") |
---|
| 46 | SET(ENV{CEGUIDIR} "${MINGW_LIBRARY_DIR}/cegui-0.6.1") |
---|
| 47 | SET(ENV{OGREDIR} "${MINGW_LIBRARY_DIR}/ogre/OgreMain;${MINGW_LIBRARY_DIR}/ogre/Samples/Common/bin/Release") |
---|
| 48 | SET(ZLIB_INCLUDE_DIR "${MINGW_LIBRARY_DIR}/zlib/include") |
---|
| 49 | SET(ZLIB_LIB_DIR "${MINGW_LIBRARY_DIR}/zlib") |
---|
| 50 | IF (NOT ENV{DXSDK_DIR}) |
---|
| 51 | SET(ENV{DXSDK_DIR} "${MINGW_LIBRARY_DIR}/DXSDK") |
---|
| 52 | ENDIF (NOT ENV{DXSDK_DIR}) |
---|
[2526] | 53 | |
---|
| 54 | # MINGW doesn't like the -fPIC flag very much |
---|
| 55 | SET(ORXONOX_FPIC_FLAG "") |
---|
| 56 | ELSE (MINGW) |
---|
| 57 | SET(ORXONOX_FPIC_FLAG "-fPIC") |
---|
[2510] | 58 | ENDIF (MINGW) |
---|
| 59 | |
---|
| 60 | #MARK_AS_ADVANCED(MINGW_LIBRARY_DIR) |
---|