Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/cmake/FindOGRE.cmake @ 2616

Last change on this file since 2616 was 2616, checked in by rgrieder, 15 years ago
  • Split FindOggVorbis.cmake in two. Having them in one file doesn't make sense, we can group it somewhere else.
  • Updated all find scripts
  • Removed all standard paths (like /usr /usr/local, etc.) because they're already searched by CMake anyway
  • Several workarounds for certain libraries when using the find script in the CMake module path.
  • Property svn:eol-style set to native
File size: 1.4 KB
Line 
1# Find OGRE includes and library
2#
3# This module defines
4#  OGRE_INCLUDE_DIR
5#  OGRE_LIBRARY, the library to link against to use OGRE.
6#  OGRE_FOUND, If false, do not try to use OGRE
7#
8# Copyright © 2007, Matt Williams
9# Modified by Nicolas Schlumberger to make it work on the Tardis-Infrastucture of the ETH Zurich
10#
11# Redistribution and use is allowed according to the terms of the BSD license.
12#
13# Several changes and additions by Fabian 'x3n' Landau
14# Lots of simplifications by Adrian Friedli
15#                 > www.orxonox.net <
16
17INCLUDE(DetermineVersion)
18INCLUDE(FindPackageHandleAdvancedArgs)
19INCLUDE(HandleLibraryTypes)
20
21FIND_PATH(OGRE_INCLUDE_DIR Ogre.h
22  PATHS $ENV{OGRE_HOME}
23  PATH_SUFFIXES include include/OGRE
24)
25FIND_LIBRARY(OGRE_LIBRARY_OPTIMIZED
26  NAMES OgreMain
27  PATHS $ENV{OGRE_HOME}
28  PATH_SUFFIXES lib bin/Release bin/release Release release
29)
30FIND_LIBRARY(OGRE_LIBRARY_DEBUG
31  NAMES OgreMaind OgreMain_d
32  PATHS $ENV{OGRE_HOME}
33  PATH_SUFFIXES lib bin/Debug bin/debug Debug debug
34)
35
36# Inspect OgrePrerquisites.h for the version number
37DETERMINE_VERSION(OGRE ${OGRE_INCLUDE_DIR}/OgrePrerequisites.h)
38
39# Handle the REQUIRED argument and set OGRE_FOUND
40# Also check the version requirements
41FIND_PACKAGE_HANDLE_ADVANCED_ARGS(OGRE DEFAULT_MSG ${OGRE_VERSION}
42  OGRE_INCLUDE_DIR
43  OGRE_LIBRARY_OPTIMIZED
44)
45
46# Collect optimized and debug libraries
47HANDLE_LIBRARY_TYPES(OGRE)
48
49MARK_AS_ADVANCED(
50  OGRE_INCLUDE_DIR
51  OGRE_LIBRARY_OPTIMIZED
52  OGRE_LIBRARY_DEBUG
53)
Note: See TracBrowser for help on using the repository browser.