Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ois_update/cmake/PackageConfigOSX.cmake @ 7622

Last change on this file since 7622 was 7615, checked in by youngk, 14 years ago

ALUT is now automatically found on the Mac

  • Property svn:eol-style set to native
File size: 3.4 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 #    OS X package configuration
24 #
25
26INCLUDE(CheckPackageVersion)
27
28CHECK_PACKAGE_VERSION(1.0)
29
30IF(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)
33ENDIF()
34
35SET(DEP_INCLUDE_DIR ${DEPENDENCY_PACKAGE_DIR}/include)
36SET(DEP_LIBRARY_DIR ${DEPENDENCY_PACKAGE_DIR}/lib)
37SET(DEP_BINARY_DIR  ${DEPENDENCY_PACKAGE_DIR}/bin)
38SET(DEP_FRAMEWORK_DIR ${DEPENDENCY_PACKAGE_DIR}/Library/Frameworks)
39
40# Sets the library path for the FIND_LIBRARY
41SET(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.
45#SET(TCL_LIBRARY  ${DEP_BINARY_DIR}/tcl85.dll CACHE FILEPATH "")
46#SET(ZLIB_LIBRARY ${DEP_BINARY_DIR}/zlib1.dll CACHE FILEPATH "")
47
48# Include paths and other special treatments
49SET(ENV{ALUTDIR}               ${DEP_FRAMEWORK_DIR})
50SET(ENV{BOOST_ROOT}            ${DEPENDENCY_PACKAGE_DIR})
51SET(ENV{CEGUIDIR}              ${DEP_FRAMEWORK_DIR})
52#SET(ENV{DBGHELP_DIR}           ${DEP_INCLUDE_DIR}/dbghelp)
53#SET(ENV{DXSDK_DIR}             ${DEP_INCLUDE_DIR}/directx)
54#SET(ENV{ENETDIR}               ${DEP_INCLUDE_DIR}/enet)
55SET(ENV{LUA_DIR}               ${DEP_INCLUDE_DIR}/lua)
56SET(ENV{OGGDIR}                ${DEP_INCLUDE_DIR})
57SET(ENV{VORBISDIR}             ${DEP_INCLUDE_DIR})
58SET(ENV{OGRE_HOME}             ${DEP_FRAMEWORK_DIR})
59SET(ENV{OGRE_PLUGIN_DIR}       ${DEP_BINARY_DIR})
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)
64
65### INSTALL ###
66
67# Tcl script library
68# TODO: How does this work on OS X?
69#INSTALL(
70#  DIRECTORY ${DEP_LIBRARY_DIR}/tcl/
71#  DESTINATION lib/tcl
72#)
73
74# TODO: Install on OSX
75IF(FALSE)
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  )
96ENDIF()
Note: See TracBrowser for help on using the repository browser.