Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/kicklib/cmake/PackageConfig.cmake @ 8064

Last change on this file since 8064 was 8064, checked in by rgrieder, 13 years ago

Also find POCO for MinGW (required for Ogre).

  • Property svn:eol-style set to native
File size: 4.7 KB
RevLine 
[5695]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 #    Reto Grieder
22 #  Description:
23 #    General package configuration. Merely sets the include paths.
24 #    Library files are treated separately.
25 #
[3167]26
27# Check package version info
[5923]28# MAJOR: Breaking change
29# MINOR: No breaking changes by the dependency package
30#        For example any code running on 3.0 should still run on 3.1
31#        But you can specify that the code only runs on 3.1 and higher
32#        or 4.0 and higher (so both 3.1 and 4.0 will work).
[7959]33IF(MSVC)
[8063]34  SET(ALLOWED_MINIMUM_VERSIONS 4.3 6.0)
[7959]35ELSE()
[8063]36  SET(ALLOWED_MINIMUM_VERSIONS 6.0)
[7959]37ENDIF()
[5923]38
[3167]39IF(NOT EXISTS ${DEPENDENCY_PACKAGE_DIR}/version.txt)
40  SET(DEPENDENCY_VERSION 1.0)
41ELSE()
42  # Get version from file
43  FILE(READ ${DEPENDENCY_PACKAGE_DIR}/version.txt _file_content)
44  SET(_match)
45  STRING(REGEX MATCH "([0-9]+.[0-9]+)" _match ${_file_content})
46  IF(_match)
47    SET(DEPENDENCY_VERSION ${_match})
48  ELSE()
49    MESSAGE(FATAL_ERROR "The version.txt file in the dependency file has corrupt version information.")
50  ENDIF()
51ENDIF()
52
53INCLUDE(CompareVersionStrings)
[5923]54SET(_version_match FALSE)
55FOREACH(_version ${ALLOWED_MINIMUM_VERSIONS})
56  # Get major version
57  STRING(REGEX REPLACE "^([0-9]+)\\..*$" "\\1" _major_version "${_version}")
58  COMPARE_VERSION_STRINGS(${DEPENDENCY_VERSION} ${_major_version} _result TRUE)
59  IF(_result EQUAL 0)
60    COMPARE_VERSION_STRINGS(${DEPENDENCY_VERSION} ${_version} _result FALSE)
61    IF(NOT _result LESS 0)
62      SET(_version_match TRUE)
63    ENDIF()
64  ENDIF()
65ENDFOREACH(_version)
66IF(NOT _version_match)
[3167]67  MESSAGE(FATAL_ERROR "Your dependency package version is ${DEPENDENCY_VERSION}\n"
[5923]68          "Possible required versions: ${ALLOWED_MINIMUM_VERSIONS}\n"
69          "You can get a new version from www.orxonox.net")
[3167]70ENDIF()
71
[5695]72IF(NOT _INTERNAL_PACKAGE_MESSAGE)
73  MESSAGE(STATUS "Using library package for the dependencies.")
74  SET(_INTERNAL_PACKAGE_MESSAGE 1 CACHE INTERNAL "Do not edit!" FORCE)
75ENDIF()
[3167]76
[7244]77# Ogre versions >= 1.7 require the POCO library on Windows with MSVC for threading
[7224]78COMPARE_VERSION_STRINGS(${DEPENDENCY_VERSION} 5 _result TRUE)
[8064]79IF(NOT _result EQUAL -1 AND NOT APPLE)
80  SET(POCO_REQUIRED TRUE)
[7224]81ENDIF()
82
[3167]83# Include paths and other special treatments
[5781]84SET(ENV{ALUTDIR}               ${DEP_INCLUDE_DIR}/freealut)
[3370]85SET(ENV{BOOST_ROOT}            ${DEP_INCLUDE_DIR}/boost)
[5781]86SET(ENV{CEGUIDIR}              ${DEP_INCLUDE_DIR}/cegui)
[7449]87SET(ENV{DBGHELP_DIR}           ${DEP_INCLUDE_DIR}/dbghelp)
[5781]88SET(ENV{DXSDK_DIR}             ${DEP_INCLUDE_DIR}/directx)
[7459]89#SET(ENV{ENETDIR}               ${DEP_INCLUDE_DIR}/enet)
[7944]90SET(ENV{LUA5.1_DIR}            ${DEP_INCLUDE_DIR}/lua)
[5781]91SET(ENV{OGGDIR}                ${DEP_INCLUDE_DIR}/libogg)
92SET(ENV{VORBISDIR}             ${DEP_INCLUDE_DIR}/libvorbis)
[3370]93SET(ENV{OGRE_HOME}             ${DEP_INCLUDE_DIR}/ogre)
[5781]94SET(ENV{OGRE_PLUGIN_DIR}       ${DEP_BINARY_DIR})
95SET(ENV{OPENALDIR}             ${DEP_INCLUDE_DIR}/openal)
[7224]96SET(ENV{POCODIR}               ${DEP_INCLUDE_DIR}/poco)
[5781]97LIST(APPEND CMAKE_INCLUDE_PATH ${DEP_INCLUDE_DIR}/tcl/include)
98LIST(APPEND CMAKE_INCLUDE_PATH ${DEP_INCLUDE_DIR}/zlib/include)
[3167]99
100### INSTALL ###
[3370]101
[5781]102# Tcl script library
103INSTALL(
104  DIRECTORY ${DEP_LIBRARY_DIR}/tcl/
105  DESTINATION lib/tcl
106)
107
[3167]108# On Windows, DLLs have to be in the executable folder, install them
109IF(WIN32 AND DEP_BINARY_DIR)
110  ## DEBUG
111  # When installing a debug version, we really can't know which libraries
112  # are used in released mode because there might be deps of deps.
113  # --> Copy all of them, except the debug databases
114  INSTALL(
115    DIRECTORY ${DEP_BINARY_DIR}/
116    DESTINATION bin
117    CONFIGURATIONS Debug
118    REGEX "^.*\\.pdb$" EXCLUDE
119  )
120
121  ## RELEASE
122  # Try to filter out all the debug libraries. If the regex doesn't do the
123  # job anymore, simply adjust it.
124  INSTALL(
125    DIRECTORY ${DEP_BINARY_DIR}/
126    DESTINATION bin
127    CONFIGURATIONS Release RelWithDebInfo MinSizeRel
128    REGEX "_[Dd]\\.[a-zA-Z0-9+-]+$|-mt-gd-|^.*\\.pdb$" EXCLUDE
129  )
130ENDIF()
Note: See TracBrowser for help on using the repository browser.