Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/cmake/ConfigMinGW.cmake @ 2594

Last change on this file since 2594 was 2594, checked in by rgrieder, 15 years ago

MinGW is able to find all the necessary libraries. However compiling does not work.

  • Property svn:eol-style set to native
  • Property svn:mergeinfo set to (toggle deleted branches)
    /code/branches/buildsystem/cmake/CheckOrxonoxWinDeps.cmakemergedeligible
    /code/branches/ceguilua/cmake/CheckOrxonoxWinDeps.cmake1802-1808
    /code/branches/core3/cmake/CheckOrxonoxWinDeps.cmake1572-1739
    /code/branches/gcc43/cmake/CheckOrxonoxWinDeps.cmake1580
    /code/branches/gui/cmake/CheckOrxonoxWinDeps.cmake1635-1723
    /code/branches/input/cmake/CheckOrxonoxWinDeps.cmake1629-1636
    /code/branches/objecthierarchy/cmake/CheckOrxonoxWinDeps.cmake1911-2085,​2100,​2110-2169
    /code/branches/pickups/cmake/CheckOrxonoxWinDeps.cmake1926-2086
    /code/branches/questsystem/cmake/CheckOrxonoxWinDeps.cmake1894-2088
    /code/branches/questsystem2/cmake/CheckOrxonoxWinDeps.cmake2107-2259
    /code/branches/script_trigger/cmake/CheckOrxonoxWinDeps.cmake1295-1953,​1955
    /code/branches/weapon/cmake/CheckOrxonoxWinDeps.cmake1925-2094
File size: 3.3 KB
Line 
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:
23 #      Reto Grieder
24 #   Co-authors:
25 #      ...
26 #
27 
28################# MinGW config ####################
29# Set the library directory when using precompiled
30# tarballs for the dependencies under windows
31###################################################
32
33IF (MINGW)
34  MESSAGE(STATUS "Running on MinGW. Using customized paths and options.")
35
36  # Determine library directory
37  IF(EXISTS ${CMAKE_SOURCE_DIR}/libs)
38    SET(MINGW_LIBRARY_DIR "${CMAKE_SOURCE_DIR}/libs")
39  ELSEIF(EXISTS ${CMAKE_SOURCE_DIR}/../lis)
40    SET(MINGW_LIBRARY_DIR "${CMAKE_SOURCE_DIR}/../libs")
41  ELSE(EXISTS ${CMAKE_SOURCE_DIR}/libs)
42    MESSAGE(FATAL_ERROR "Could not find dependency directory for the MinGW libraries")
43  ENDIF(EXISTS ${CMAKE_SOURCE_DIR}/libs)
44  SET(ORXONOX_LIBRARY_BIN_DIR ${MINGW_LIBRARY_DIR})
45
46  # Note: When setting ENV${} variables, make sure to use quotes when
47  #       having multiple directories.
48  SET(ENV{BOOST_ROOT}    "${MINGW_LIBRARY_DIR}/boost_1_34_1")
49  SET(ENV{CEGUIDIR}      "${MINGW_LIBRARY_DIR}/cegui-0.6.1")
50  SET(ENV{ENETDIR}       "${MINGW_LIBRARY_DIR}/enet-1.1")
51  SET(ENV{ALUTDIR}       "${MINGW_LIBRARY_DIR}/freealut-1.1.0")
52  SET(ENV{OGGDIR}        "${MINGW_LIBRARY_DIR}/libogg-1.1.3;${MINGW_LIBRARY_DIR}/libogg-1.1.3/src/.libs")
53  SET(ENV{VORBISDIR}     "${MINGW_LIBRARY_DIR}/libvorbis-1.2.0;${MINGW_LIBRARY_DIR}/libvorbis-1.2.0/lib/.libs")
54  SET(ENV{OPENALDIR}     "${MINGW_LIBRARY_DIR}/openal-0.0.8/common;${MINGW_LIBRARY_DIR}/openal-0.0.8/src/.libs")
55  SET(ENV{LUA_DIR}       "${MINGW_LIBRARY_DIR}/lua-5.1.3")
56  SET(ENV{OGRE_HOME}     "${MINGW_LIBRARY_DIR}/ogre/OgreMain;${MINGW_LIBRARY_DIR}/ogre/Samples/Common")
57  SET(TCL_INCLUDE_PATH   "${MINGW_LIBRARY_DIR}/tcl8.5.2/generic")
58  SET(TCL_LIBRARY        "${MINGW_LIBRARY_DIR}/tcl8.5.2/win/tcl85.dll")
59  # Do some hacking to avoid "Tclsh not found" message
60  SET(TCL_TCLSH          "${MINGW_LIBRARY_DIR}/tcl8.5.2/win/tcl85.dll")
61  SET(ZLIB_INCLUDE_DIR   "${MINGW_LIBRARY_DIR}/zlib/include")
62  SET(ZLIB_LIBRARY       "${MINGW_LIBRARY_DIR}/zlib/libzlib.a")
63  IF ($ENV{DXSDK_DIR} STREQUAL "")
64    SET(ENV{DXSDK_DIR} "${MINGW_LIBRARY_DIR}/DXSDK")
65  ENDIF ($ENV{DXSDK_DIR} STREQUAL "")
66
67  # MINGW doesn't like the -fPIC flag, reconfigure flags
68  SET(CMAKE_C_FLAGS   "$ENV{CFLAGS}   ${ORXONOX_WARNING_FLAGS}")
69  SET(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} ${ORXONOX_WARNING_FLAGS}")
70
71  # Also set the tolua working directory because lua.dll is not where tolua ia
72  SET(TOLUA_PARSER_WORKING_DIRECTORY "${MNGW_LIBRARY_DIR}/lua-5.1.3/lib")
73
74ENDIF (MINGW)
Note: See TracBrowser for help on using the repository browser.