Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: sandbox/cmake/PackageConfig.cmake @ 5782

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

Applied changes to the real sandbox this time.

  • Property svn:eol-style set to native
File size: 3.2 KB
Line 
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 #
26
27# Check package version info
28# MAJOR: Interface breaking change somewhere (library version changed, etc.)
29# MINOR: Bug fix or small conformant changes
30SET(DEPENDENCY_VERSION_REQUIRED 3)
31IF(NOT EXISTS ${DEPENDENCY_PACKAGE_DIR}/version.txt)
32  SET(DEPENDENCY_VERSION 1.0)
33ELSE()
34  # Get version from file
35  FILE(READ ${DEPENDENCY_PACKAGE_DIR}/version.txt _file_content)
36  SET(_match)
37  STRING(REGEX MATCH "([0-9]+.[0-9]+)" _match ${_file_content})
38  IF(_match)
39    SET(DEPENDENCY_VERSION ${_match})
40  ELSE()
41    MESSAGE(FATAL_ERROR "The version.txt file in the dependency file has corrupt version information.")
42  ENDIF()
43ENDIF()
44
45INCLUDE(CompareVersionStrings)
46COMPARE_VERSION_STRINGS(${DEPENDENCY_VERSION} ${DEPENDENCY_VERSION_REQUIRED} _result TRUE)
47IF(NOT _result EQUAL 0)
48  MESSAGE(FATAL_ERROR "Your dependency package version is ${DEPENDENCY_VERSION}\n"
49          "Required version: ${DEPENDENCY_VERSION_REQUIRED}\n"
50          "You can get a new version from www.orxonox.net")
51ENDIF()
52
53IF(NOT _INTERNAL_PACKAGE_MESSAGE)
54  MESSAGE(STATUS "Using library package for the dependencies.")
55  SET(_INTERNAL_PACKAGE_MESSAGE 1 CACHE INTERNAL "Do not edit!" FORCE)
56ENDIF()
57
58# Include paths and other special treatments
59SET(ENV{BOOST_ROOT}            ${DEP_INCLUDE_DIR}/boost)
60SET(ENV{LUA_DIR}               ${DEP_INCLUDE_DIR}/lua)
61SET(ENV{OGRE_HOME}             ${DEP_INCLUDE_DIR}/ogre)
62
63### INSTALL ###
64
65# On Windows, DLLs have to be in the executable folder, install them
66IF(WIN32 AND DEP_BINARY_DIR)
67  ## DEBUG
68  # When installing a debug version, we really can't know which libraries
69  # are used in released mode because there might be deps of deps.
70  # --> Copy all of them, except the debug databases
71  INSTALL(
72    DIRECTORY ${DEP_BINARY_DIR}/
73    DESTINATION bin
74    CONFIGURATIONS Debug
75    REGEX "^.*\\.pdb$" EXCLUDE
76  )
77
78  ## RELEASE
79  # Try to filter out all the debug libraries. If the regex doesn't do the
80  # job anymore, simply adjust it.
81  INSTALL(
82    DIRECTORY ${DEP_BINARY_DIR}/
83    DESTINATION bin
84    CONFIGURATIONS Release RelWithDebInfo MinSizeRel
85    REGEX "_[Dd]\\.[a-zA-Z0-9+-]+$|-mt-gd-|^.*\\.pdb$" EXCLUDE
86  )
87ENDIF()
Note: See TracBrowser for help on using the repository browser.