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 |
---|
10 | # of the ETH Zurich (removed later on) |
---|
11 | # |
---|
12 | # Redistribution and use is allowed according to the terms of the BSD license. |
---|
13 | # |
---|
14 | # Several changes and additions by Fabian 'x3n' Landau |
---|
15 | # Lots of simplifications by Adrian Friedli |
---|
16 | # Version checking by Reto Grieder |
---|
17 | # > www.orxonox.net < |
---|
18 | |
---|
19 | INCLUDE(DetermineVersion) |
---|
20 | INCLUDE(FindPackageHandleAdvancedArgs) |
---|
21 | INCLUDE(HandleLibraryTypes) |
---|
22 | |
---|
23 | FIND_PATH(OGRE_INCLUDE_DIR Ogre.h |
---|
24 | PATHS $ENV{OGRE_HOME} |
---|
25 | PATH_SUFFIXES include include/OGRE |
---|
26 | ) |
---|
27 | FIND_LIBRARY(OGRE_LIBRARY_OPTIMIZED |
---|
28 | NAMES OgreMain Ogre |
---|
29 | PATHS $ENV{OGRE_HOME} |
---|
30 | PATH_SUFFIXES lib bin/Release bin/release Release release |
---|
31 | ) |
---|
32 | FIND_LIBRARY(OGRE_LIBRARY_DEBUG |
---|
33 | NAMES OgreMaind OgreMain_d OgreMainD OgreMain_D Ogred Ogre_d OgreD Ogre_d |
---|
34 | PATHS $ENV{OGRE_HOME} |
---|
35 | PATH_SUFFIXES lib bin/Debug bin/debug Debug debug |
---|
36 | ) |
---|
37 | |
---|
38 | # Inspect OgrePrerquisites.h for the version number |
---|
39 | DETERMINE_VERSION(OGRE ${OGRE_INCLUDE_DIR}/OgrePrerequisites.h) |
---|
40 | COMPARE_VERSION_STRINGS("${OGRE_VERSION}" "1.9" _version_1_9_compare TRUE) |
---|
41 | # Version 1.9 moved overlays into a separate component (which means we must find and link to another library) |
---|
42 | IF(_version_1_9_compare GREATER -1) |
---|
43 | FIND_LIBRARY(OGRE_OVERLAY_LIBRARY_OPTIMIZED |
---|
44 | NAMES OgreOverlay |
---|
45 | PATHS $ENV{OGRE_HOME} |
---|
46 | PATH_SUFFIXES lib bin/Release bin/release Release release |
---|
47 | ) |
---|
48 | FIND_LIBRARY(OGRE_OVERLAY_LIBRARY_DEBUG |
---|
49 | NAMES OgreOverlayd OgreOverlay_d OgreOverlayD OgreOverlay_D |
---|
50 | PATHS $ENV{OGRE_HOME} |
---|
51 | PATH_SUFFIXES lib bin/Debug bin/debug Debug debug |
---|
52 | ) |
---|
53 | SET(OGRE_REQUIRED_VARIABLES |
---|
54 | OGRE_OVERLAY_LIBRARY_OPTIMIZED |
---|
55 | ) |
---|
56 | ENDIF() |
---|
57 | |
---|
58 | # Handle the REQUIRED argument and set OGRE_FOUND |
---|
59 | # Also check the version requirements |
---|
60 | FIND_PACKAGE_HANDLE_ADVANCED_ARGS(OGRE DEFAULT_MSG ${OGRE_VERSION} |
---|
61 | OGRE_LIBRARY_OPTIMIZED |
---|
62 | OGRE_INCLUDE_DIR |
---|
63 | ${OGRE_REQUIRED_VARIABLES} |
---|
64 | ) |
---|
65 | |
---|
66 | # Collect optimized and debug libraries |
---|
67 | HANDLE_LIBRARY_TYPES(OGRE) |
---|
68 | HANDLE_LIBRARY_TYPES(OGRE_OVERLAY) |
---|
69 | |
---|
70 | MARK_AS_ADVANCED( |
---|
71 | OGRE_INCLUDE_DIR |
---|
72 | OGRE_LIBRARY_OPTIMIZED |
---|
73 | OGRE_LIBRARY_DEBUG |
---|
74 | OGRE_OVERLAY_LIBRARY_OPTIMIZED |
---|
75 | OGRE_OVERLAY_LIBRARY_DEBUG |
---|
76 | ) |
---|