You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.5 KiB
CMake
85 lines
2.5 KiB
CMake
# Find OGRE includes and library
|
|
#
|
|
# This module defines
|
|
# OGRE_INCLUDE_DIR
|
|
# OGRE_LIBRARIES, the libraries to link against to use OGRE.
|
|
# OGRE_LIB_DIR, the location of the libraries
|
|
# OGRE_FOUND, If false, do not try to use OGRE
|
|
#
|
|
# Copyright © 2007, Matt Williams
|
|
#
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
CMAKE_POLICY(PUSH)
|
|
|
|
IF (OGRE_LIBRARIES AND OGRE_INCLUDE_DIR)
|
|
SET(OGRE_FIND_QUIETLY TRUE) # Already in cache, be silent
|
|
ENDIF (OGRE_LIBRARIES AND OGRE_INCLUDE_DIR)
|
|
|
|
IF (WIN32) #Windows
|
|
MESSAGE(STATUS "Looking for OGRE")
|
|
SET(OGRESDK $ENV{OGRE_HOME})
|
|
SET(OGRESOURCE $ENV{OGRE_SRC})
|
|
IF (OGRESDK)
|
|
MESSAGE(STATUS "Using OGRE SDK")
|
|
STRING(REGEX REPLACE "[\\]" "/" OGRESDK "${OGRESDK}")
|
|
SET(OGRE_INCLUDE_DIR ${OGRESDK}/include)
|
|
SET(OGRE_LIB_DIR ${OGRESDK}/lib)
|
|
SET(OGRE_LIBRARIES debug OgreMain_d optimized OgreMain)
|
|
ENDIF (OGRESDK)
|
|
IF (OGRESOURCE)
|
|
MESSAGE(STATUS "Using OGRE built from source")
|
|
SET(OGRE_INCLUDE_DIR $ENV{OGRE_SRC}/OgreMain/include)
|
|
SET(OGRE_LIB_DIR $ENV{OGRE_SRC}/lib)
|
|
SET(OGRE_LIBRARIES debug OgreMain_d optimized OgreMain)
|
|
ENDIF (OGRESOURCE)
|
|
ENDIF (WIN32)
|
|
|
|
IF (UNIX AND NOT APPLE)
|
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.4.7 FATAL_ERROR)
|
|
FIND_PACKAGE(PkgConfig REQUIRED)
|
|
PKG_SEARCH_MODULE(OGRE REQUIRED OGRE)
|
|
SET(OGRE_INCLUDE_DIR ${OGRE_INCLUDE_DIRS})
|
|
SET(OGRE_LIB_DIR ${OGRE_LIBDIR})
|
|
SET(OGRE_LIBRARIES ${OGRE_LIBRARIES} CACHE STRING "")
|
|
ENDIF (UNIX AND NOT APPLE)
|
|
|
|
IF (APPLE)
|
|
FIND_PATH(OGRE_INCLUDE_DIR Ogre.h
|
|
PATHS
|
|
/Library/Frameworks
|
|
/opt/local
|
|
)
|
|
FIND_LIBRARY(OGRE_LIBRARIES
|
|
NAMES Ogre
|
|
PATHS
|
|
/Library/Frameworks
|
|
/opt/local
|
|
)
|
|
ENDIF (APPLE)
|
|
|
|
#Do some preparation
|
|
SEPARATE_ARGUMENTS(OGRE_INCLUDE_DIR)
|
|
SEPARATE_ARGUMENTS(OGRE_LIBRARIES)
|
|
|
|
SET(OGRE_INCLUDE_DIR ${OGRE_INCLUDE_DIR} CACHE PATH "")
|
|
SET(OGRE_LIBRARIES ${OGRE_LIBRARIES} CACHE STRING "")
|
|
SET(OGRE_LIB_DIR ${OGRE_LIB_DIR} CACHE PATH "")
|
|
|
|
IF (OGRE_INCLUDE_DIR AND OGRE_LIBRARIES)
|
|
SET(OGRE_FOUND TRUE)
|
|
ENDIF (OGRE_INCLUDE_DIR AND OGRE_LIBRARIES)
|
|
|
|
IF (OGRE_FOUND)
|
|
IF (NOT OGRE_FIND_QUIETLY)
|
|
MESSAGE(STATUS " libraries : ${OGRE_LIBRARIES} from ${OGRE_LIB_DIR}")
|
|
MESSAGE(STATUS " includes : ${OGRE_INCLUDE_DIR}")
|
|
ENDIF (NOT OGRE_FIND_QUIETLY)
|
|
ELSE (OGRE_FOUND)
|
|
IF (OGRE_FIND_REQUIRED)
|
|
MESSAGE(FATAL_ERROR "Could not find OGRE")
|
|
ENDIF (OGRE_FIND_REQUIRED)
|
|
ENDIF (OGRE_FOUND)
|
|
|
|
CMAKE_POLICY(POP)
|