Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 11127


Ignore:
Timestamp:
Feb 21, 2016, 11:15:03 PM (8 years ago)
Author:
landauf
Message:

in ogre 1.9, overlays were moved into a separate component (i.e. a shared library called OgreOverlay) → we have to find and link this library if ogre's version is ≥ 1.9

Location:
code/branches/ogre1.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ogre1.9/cmake/tools/FindOGRE.cmake

    r8351 r11127  
    3838# Inspect OgrePrerquisites.h for the version number
    3939DETERMINE_VERSION(OGRE ${OGRE_INCLUDE_DIR}/OgrePrerequisites.h)
     40COMPARE_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)
     42IF(_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  )
     56ENDIF()
    4057
    4158# Handle the REQUIRED argument and set OGRE_FOUND
     
    4461  OGRE_LIBRARY_OPTIMIZED
    4562  OGRE_INCLUDE_DIR
     63  ${OGRE_REQUIRED_VARIABLES}
    4664)
    4765
    4866# Collect optimized and debug libraries
    4967HANDLE_LIBRARY_TYPES(OGRE)
     68HANDLE_LIBRARY_TYPES(OGRE_OVERLAY)
    5069
    5170MARK_AS_ADVANCED(
     
    5372  OGRE_LIBRARY_OPTIMIZED
    5473  OGRE_LIBRARY_DEBUG
     74  OGRE_OVERLAY_LIBRARY_OPTIMIZED
     75  OGRE_OVERLAY_LIBRARY_DEBUG
    5576)
  • code/branches/ogre1.9/src/orxonox/CMakeLists.txt

    r11080 r11127  
    6969  LINK_LIBRARIES
    7070    ${OGRE_LIBRARY}
     71    ${OGRE_OVERLAY_LIBRARY}
    7172    ${CEGUI}
    7273    ${LUA5.1_LIBRARY}
Note: See TracChangeset for help on using the changeset viewer.