[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: |
---|
[7582] | 23 | # OS X package configuration |
---|
[5695] | 24 | # |
---|
[3167] | 25 | |
---|
[7582] | 26 | INCLUDE(CheckPackageVersion) |
---|
[5923] | 27 | |
---|
[7582] | 28 | CHECK_PACKAGE_VERSION(1.0) |
---|
[3167] | 29 | |
---|
[5695] | 30 | IF(NOT _INTERNAL_PACKAGE_MESSAGE) |
---|
| 31 | MESSAGE(STATUS "Using library package for the dependencies.") |
---|
| 32 | SET(_INTERNAL_PACKAGE_MESSAGE 1 CACHE INTERNAL "Do not edit!" FORCE) |
---|
| 33 | ENDIF() |
---|
[3167] | 34 | |
---|
[7582] | 35 | SET(DEP_INCLUDE_DIR ${DEPENDENCY_PACKAGE_DIR}/include) |
---|
| 36 | SET(DEP_LIBRARY_DIR ${DEPENDENCY_PACKAGE_DIR}/lib) |
---|
| 37 | SET(DEP_BINARY_DIR ${DEPENDENCY_PACKAGE_DIR}/bin) |
---|
[7591] | 38 | SET(DEP_FRAMEWORK_DIR ${DEPENDENCY_PACKAGE_DIR}/Library/Frameworks) |
---|
[7224] | 39 | |
---|
[7582] | 40 | # Sets the library path for the FIND_LIBRARY |
---|
| 41 | SET(CMAKE_LIBRARY_PATH ${DEP_LIBRARY_DIR}) |
---|
| 42 | |
---|
| 43 | # Certain find scripts don't behave as ecpected so we have |
---|
| 44 | # to specify the libraries ourselves. |
---|
[7591] | 45 | #SET(TCL_LIBRARY ${DEP_BINARY_DIR}/tcl85.dll CACHE FILEPATH "") |
---|
| 46 | #SET(ZLIB_LIBRARY ${DEP_BINARY_DIR}/zlib1.dll CACHE FILEPATH "") |
---|
[7582] | 47 | |
---|
[3167] | 48 | # Include paths and other special treatments |
---|
[7615] | 49 | SET(ENV{ALUTDIR} ${DEP_FRAMEWORK_DIR}) |
---|
[7591] | 50 | SET(ENV{BOOST_ROOT} ${DEPENDENCY_PACKAGE_DIR}) |
---|
| 51 | SET(ENV{CEGUIDIR} ${DEP_FRAMEWORK_DIR}) |
---|
| 52 | #SET(ENV{DBGHELP_DIR} ${DEP_INCLUDE_DIR}/dbghelp) |
---|
| 53 | #SET(ENV{DXSDK_DIR} ${DEP_INCLUDE_DIR}/directx) |
---|
[7459] | 54 | #SET(ENV{ENETDIR} ${DEP_INCLUDE_DIR}/enet) |
---|
[3370] | 55 | SET(ENV{LUA_DIR} ${DEP_INCLUDE_DIR}/lua) |
---|
[7591] | 56 | SET(ENV{OGGDIR} ${DEP_INCLUDE_DIR}) |
---|
| 57 | SET(ENV{VORBISDIR} ${DEP_INCLUDE_DIR}) |
---|
| 58 | SET(ENV{OGRE_HOME} ${DEP_FRAMEWORK_DIR}) |
---|
[5781] | 59 | SET(ENV{OGRE_PLUGIN_DIR} ${DEP_BINARY_DIR}) |
---|
[7591] | 60 | #SET(ENV{OPENALDIR} ${DEP_INCLUDE_DIR}/openal) |
---|
| 61 | #SET(ENV{POCODIR} ${DEP_INCLUDE_DIR}/poco) |
---|
| 62 | #LIST(APPEND CMAKE_INCLUDE_PATH ${DEP_INCLUDE_DIR}/tcl/include) |
---|
| 63 | #LIST(APPEND CMAKE_INCLUDE_PATH ${DEP_INCLUDE_DIR}/zlib/include) |
---|
[3167] | 64 | |
---|
| 65 | ### INSTALL ### |
---|
[3370] | 66 | |
---|
[5781] | 67 | # Tcl script library |
---|
[7582] | 68 | # TODO: How does this work on OS X? |
---|
| 69 | #INSTALL( |
---|
| 70 | # DIRECTORY ${DEP_LIBRARY_DIR}/tcl/ |
---|
| 71 | # DESTINATION lib/tcl |
---|
| 72 | #) |
---|
[5781] | 73 | |
---|
[7582] | 74 | # TODO: Install on OSX |
---|
| 75 | IF(FALSE) |
---|
[3167] | 76 | ## DEBUG |
---|
| 77 | # When installing a debug version, we really can't know which libraries |
---|
| 78 | # are used in released mode because there might be deps of deps. |
---|
| 79 | # --> Copy all of them, except the debug databases |
---|
| 80 | INSTALL( |
---|
| 81 | DIRECTORY ${DEP_BINARY_DIR}/ |
---|
| 82 | DESTINATION bin |
---|
| 83 | CONFIGURATIONS Debug |
---|
| 84 | REGEX "^.*\\.pdb$" EXCLUDE |
---|
| 85 | ) |
---|
| 86 | |
---|
| 87 | ## RELEASE |
---|
| 88 | # Try to filter out all the debug libraries. If the regex doesn't do the |
---|
| 89 | # job anymore, simply adjust it. |
---|
| 90 | INSTALL( |
---|
| 91 | DIRECTORY ${DEP_BINARY_DIR}/ |
---|
| 92 | DESTINATION bin |
---|
| 93 | CONFIGURATIONS Release RelWithDebInfo MinSizeRel |
---|
| 94 | REGEX "_[Dd]\\.[a-zA-Z0-9+-]+$|-mt-gd-|^.*\\.pdb$" EXCLUDE |
---|
| 95 | ) |
---|
| 96 | ENDIF() |
---|