Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/kicklib/cmake/LibraryConfig.cmake @ 8062

Last change on this file since 8062 was 8057, checked in by rgrieder, 14 years ago

Added some extra wursts for Visual Studio 2010 to the build system.

  • Property svn:eol-style set to native
File size: 7.3 KB
RevLine 
[2626]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 #    Configures the external libraries. Whenever possible, the find scripts
24 #    from the CMake module path are used, but that required some adjustments
25 #    for certain libraries (Boost, OpenAL, TCL)
26 #
[6417]27
[2618]28INCLUDE(CompareVersionStrings)
29INCLUDE(FindPackageHandleStandardArgs)
30
[2696]31# Prevent CMake from finding libraries in the installation folder on Windows.
[2645]32# There might already be an installation from another compiler
[5695]33IF(WIN32)
[2696]34  LIST(REMOVE_ITEM CMAKE_SYSTEM_PREFIX_PATH  "${CMAKE_INSTALL_PREFIX}")
35  LIST(REMOVE_ITEM CMAKE_SYSTEM_LIBRARY_PATH "${CMAKE_INSTALL_PREFIX}/bin")
36ENDIF()
[2645]37
[2631]38############## Platform Scripts #################
[2618]39
[2631]40# On Windows using a package causes way less problems
41SET(_option_msg "Set this to true to use precompiled dependecy archives")
42IF(WIN32)
[2673]43  OPTION(DEPENDENCY_PACKAGE_ENABLE "${_option_msg}" ON)
[2631]44ELSE(WIN32)
[2673]45  OPTION(DEPENDENCY_PACKAGE_ENABLE "${_option_msg}" FALSE)
[2631]46ENDIF(WIN32)
[2618]47
48# Scripts for specific library and CMake config
49INCLUDE(LibraryConfigTardis)
[5781]50INCLUDE(LibraryConfigApple)
[1505]51
[2673]52IF(DEPENDENCY_PACKAGE_ENABLE)
53  GET_FILENAME_COMPONENT(_dep_dir_1 ${CMAKE_SOURCE_DIR}/../dependencies ABSOLUTE)
[7225]54  GET_FILENAME_COMPONENT(_dep_dir_2 ${CMAKE_SOURCE_DIR}/../lib_dist ABSOLUTE)
55  IF(MINGW)
56    SET(_compiler_prefix mingw)
57  ELSEIF(MSVC80)
58    SET(_compiler_prefix msvc8)
59  ELSEIF(MSVC90)
60    SET(_compiler_prefix msvc9)
[8057]61  ELSEIF(MSVC100)
62    SET(_compiler_prefix msvc10)
[7225]63  ENDIF()
[2673]64  FIND_PATH(DEPENDENCY_PACKAGE_DIR
[7225]65    NAMES version.txt
[2651]66    PATHS
67      ${CMAKE_SOURCE_DIR}/dependencies
[2673]68      ${_dep_dir_1}
69      ${_dep_dir_2}
[7225]70    PATH_SUFFIXES ${_compiler_prefix} ${_compiler_prefix}/dependencies
[2711]71    NO_CMAKE_PATH NO_CMAKE_ENVIRONMENT_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH
[2651]72  )
[2673]73  IF(NOT DEPENDENCY_PACKAGE_DIR)
[2631]74    MESSAGE(STATUS "Warning: Could not find dependency directory."
75                   "Disable LIBRARY_USE_PACKAGE if you have none intalled.")
[2651]76  ELSE()
[2674]77    INCLUDE(PackageConfigMinGW)
78    INCLUDE(PackageConfigMSVC)
[3196]79    INCLUDE(PackageConfig) # For both msvc and mingw
80  ENDIF()
[2673]81ENDIF(DEPENDENCY_PACKAGE_ENABLE)
[2631]82
[5781]83# User script
84SET(LIBRARY_CONFIG_USER_SCRIPT "" CACHE FILEPATH
85    "Specify a CMake script if you wish to write your own library path config.
86     See LibraryConfigTardis.cmake for an example.")
87IF(LIBRARY_CONFIG_USER_SCRIPT)
88  IF(EXISTS ${CMAKE_MODULE_PATH}/${LIBRARY_CONFIG_USER_SCRIPT})
89    INCLUDE(${CMAKE_MODULE_PATH}/${LIBRARY_CONFIG_USER_SCRIPT})
90  ENDIF()
91ENDIF(LIBRARY_CONFIG_USER_SCRIPT)
92
93
[2616]94############### Library finding #################
95# Performs the search and sets the variables    #
[2579]96
[7948]97FIND_PACKAGE(OGRE     1.6    REQUIRED)
[7943]98#FIND_PACKAGE(ENet     1.1    REQUIRED)
[7944]99FIND_PACKAGE(Lua5.1          REQUIRED)
[5781]100FIND_PACKAGE(Ogg             REQUIRED)
101FIND_PACKAGE(Vorbis          REQUIRED)
102FIND_PACKAGE(ALUT            REQUIRED)
103FIND_PACKAGE(ZLIB            REQUIRED)
[7224]104IF(POCO_REQUIRED)
105  FIND_PACKAGE(POCO          REQUIRED)
[7956]106  # Always link against POCO too because of threading
107  SET(OGRE_LIBRARY ${OGRE_LIBRARY} ${POCO_LIBRARY})
[7224]108ENDIF()
[5781]109IF(WIN32)
[7449]110  FIND_PACKAGE(DbgHelp)
[5781]111  FIND_PACKAGE(DirectX       REQUIRED)
[7224]112ENDIF()
[5781]113
114##### CEGUI #####
115# We make use of the CEGUI script module called CEGUILua.
[7941]116# However there is a small issue with that: Both CEGUILua and Orxonox use
117# Lua library functions on the same objects. And it turns out that in this case
118# the linked library must be EXACTLY the same.
[7943]119# Since Lua v5.1 has been out for a long while, this does not seem to be a
120# problem anymore, at least as long as Lua 5.2 is not released.
[7947]121FIND_PACKAGE(CEGUI 0.6 REQUIRED)
[5781]122
123##### OpenAL #####
124FIND_PACKAGE(OpenAL REQUIRED)
125# Also use parent include dir (without AL/) for ALUT
126IF(OPENAL_INCLUDE_DIR MATCHES "/AL$")
127  GET_FILENAME_COMPONENT(ALT_OPENAL_INCLUDE_DIR ${OPENAL_INCLUDE_DIR} PATH)
128ENDIF()
129SET(OPENAL_INCLUDE_DIRS ${OPENAL_INCLUDE_DIR} ${ALT_OPENAL_INCLUDE_DIR})
130# Notfiy user
131FIND_PACKAGE_HANDLE_STANDARD_ARGS(OpenAL DEFAULT_MSG OPENAL_LIBRARY OPENAL_INCLUDE_DIR)
132# Hide variables created by the script
133MARK_AS_ADVANCED(OPENAL_INCLUDE_DIR OPENAL_LIBRARY)
134
135##### Tcl #####
136# We only require Tcl, so avoid confusing user about other Tcl stuff by
137# applying a little workaround
138SET(Tclsh_FIND_QUIETLY TRUE)
139FIND_PACKAGE(TCL QUIET)
140# Display messages separately
141SET(TCL_FIND_QUIETLY FALSE)
142FIND_PACKAGE_HANDLE_STANDARD_ARGS(TCL DEFAULT_MSG TCL_LIBRARY TCL_INCLUDE_PATH)
143
[2616]144##### Boost #####
145# Expand the next statement if newer boost versions than 1.36.1 are released
[7237]146SET(Boost_ADDITIONAL_VERSIONS 1.37 1.37.0 1.38 1.38.0 1.39 1.39.0 1.40 1.40.0
147                              1.41 1.41.0 1.42 1.42.0 1.43 1.43.0 1.44 1.44.0)
[6461]148IF( NOT TARDIS )
149  FIND_PACKAGE(Boost 1.35 REQUIRED thread filesystem system date_time)
150ENDIF()
[2673]151# No auto linking, so this option is useless anyway
152MARK_AS_ADVANCED(Boost_LIB_DIAGNOSTIC_DEFINITIONS)
[2618]153
[3304]154
[2618]155####### Static/Dynamic linking options ##########
156
157# On Windows dynamically linked libraries need some special treatment
158# You may want to edit these settings if you provide your own libraries
159# Note: Default option in the libraries vary, but our default option is dynamic
160IF(WIN32)
[7944]161  OPTION(LINK_BOOST_DYNAMIC  "Link Boost dynamically on Windows" TRUE)
162  OPTION(LINK_CEGUI_DYNAMIC  "Link CEGUI dynamicylly on Windows" TRUE)
163  #OPTION(LINK_ENET_DYNAMIC   "Link ENet dynamically on Windows" TRUE)
164  OPTION(LINK_OGRE_DYNAMIC   "Link OGRE dynamically on Windows" TRUE)
165  OPTION(LINK_TCL_DYNAMIC    "Link TCL dynamically on Windows" TRUE)
166  OPTION(LINK_ZLIB_DYNAMIC   "Link ZLib dynamically on Windows" TRUE)
167  OPTION(LINK_LUA5.1_DYNAMIC "Link Lua dynamically on Windows" TRUE)
[2925]168
169  IF(DEPENDENCY_PACKAGE_ENABLE)
170    MARK_AS_ADVANCED(
[7459]171      LINK_BOOST_DYNAMIC LINK_CEGUI_DYNAMIC #LINK_ENET_DYNAMIC
[5781]172      LINK_OGRE_DYNAMIC  LINK_TCL_DYNAMIC   LINK_ZLIB_DYNAMIC
[7944]173      LINK_LUA5.1_DYNAMIC
[2925]174    )
175  ENDIF()
[2618]176ENDIF(WIN32)
[5781]177
178
179################# OGRE Plugins ##################
180
181# More plugins: Plugin_BSPSceneManager, Plugin_OctreeSceneManager
[7243]182SET(OGRE_PLUGINS_INT Plugin_ParticleFX)
[5781]183IF(WIN32)
184  # CG program manager is probably DirectX related (not available under unix)
185  LIST(APPEND OGRE_PLUGINS_INT Plugin_CgProgramManager)
186ENDIF(WIN32)
187SET(OGRE_PLUGINS ${OGRE_PLUGINS_INT} CACHE STRING
188   "Specify which OGRE plugins to load. Existance check is performed.")
189
190# Check the plugins and determine the plugin folder
191# You can give a hint by setting the environment variable ENV{OGRE_PLUGIN_DIR}
192INCLUDE(CheckOGREPlugins)
193CHECK_OGRE_PLUGINS(${OGRE_PLUGINS})
194
Note: See TracBrowser for help on using the repository browser.