Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/mac_osx/cmake/PackageConfigOSX.cmake @ 8056

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

Fiddled around with ALUT and OpenAL headers.
The hack in PackageConfigOSX.cmake is just a guess so it really needs testing.

All ALUT and OpenAL headers should now be included with <alut.h> or <al.h> respectively because FindOpenAL.cmake defines the include directories this way.
There is still a hack in LibraryConfig.cmake for non MSVC/Apple systems because alut.h includes al.h with AL/al.h on most systems.

  • Property svn:eol-style set to native
File size: 3.5 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# Include paths and other special treatments
44SET(ENV{ALUTDIR}               ${DEP_FRAMEWORK_DIR})
45SET(ENV{BOOST_ROOT}            ${DEPENDENCY_PACKAGE_DIR})
46SET(ENV{CEGUIDIR}              ${DEP_FRAMEWORK_DIR})
47SET(ENV{LUA_DIR}               ${DEP_INCLUDE_DIR}/lua)
48SET(ENV{OGGDIR}                ${DEP_INCLUDE_DIR})
49SET(ENV{VORBISDIR}             ${DEP_INCLUDE_DIR})
50SET(ENV{OGRE_HOME}             ${DEP_FRAMEWORK_DIR})
51SET(ENV{OGRE_PLUGIN_DIR}       ${DEP_BINARY_DIR})
52
53# For OS X 10.5 we have to ship modified headers to make it compile
54# on gcc >= 4.2 (binaries stay the same)
55# Sets the library path for the FIND_LIBRARY
56IF(CMAKE_SYSTEM_VERSION STREQUAL "10.5")
57  SET(ENV{OPENALDIR} ${DEP_INCLUDE_DIR}/openal)
58ENDIF()
59
60# Xcode won't be able to run the toluabind code generation if we're using the dependency package
61#IF(DEPENDENCY_PACKAGE_ENABLE)
62#  IF(${CMAKE_GENERATOR} STREQUAL "Xcode")
63#    SET(ENV{DYLD_LIBRARY_PATH}               ${DEPENDENCY_PACKAGE_DIR}/lib)
64#    SET(ENV{DYLD_FRAMEWORK_PATH}             ${DEPENDENCY_PACKAGE_DIR}/Library/Frameworks)
65#  ENDIF(${CMAKE_GENERATOR} STREQUAL "Xcode")
66#ENDIF(DEPENDENCY_PACKAGE_ENABLE)
67
68### INSTALL ###
69
70# Tcl script library
71# TODO: How does this work on OS X?
72#INSTALL(
73#  DIRECTORY ${DEP_LIBRARY_DIR}/tcl/
74#  DESTINATION lib/tcl
75#)
76
77# TODO: Install on OSX
78IF(FALSE)
79  ## DEBUG
80  # When installing a debug version, we really can't know which libraries
81  # are used in released mode because there might be deps of deps.
82  # --> Copy all of them, except the debug databases
83  INSTALL(
84    DIRECTORY ${DEP_BINARY_DIR}/
85    DESTINATION bin
86    CONFIGURATIONS Debug
87    REGEX "^.*\\.pdb$" EXCLUDE
88  )
89
90  ## RELEASE
91  # Try to filter out all the debug libraries. If the regex doesn't do the
92  # job anymore, simply adjust it.
93  INSTALL(
94    DIRECTORY ${DEP_BINARY_DIR}/
95    DESTINATION bin
96    CONFIGURATIONS Release RelWithDebInfo MinSizeRel
97    REGEX "_[Dd]\\.[a-zA-Z0-9+-]+$|-mt-gd-|^.*\\.pdb$" EXCLUDE
98  )
99ENDIF()
Note: See TracBrowser for help on using the repository browser.