Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8224


Ignore:
Timestamp:
Apr 10, 2011, 9:02:15 PM (13 years ago)
Author:
rgrieder
Message:

Removed support for Boost versions less than 1.40.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/kicklib/cmake/LibraryConfig.cmake

    r8221 r8224  
    135135##### Boost #####
    136136# Expand the next statement if newer boost versions are released
    137 SET(Boost_ADDITIONAL_VERSIONS 1.37 1.37.0 1.38 1.38.0 1.39 1.39.0 1.40 1.40.0
    138                               1.41 1.41.0 1.42 1.42.0 1.43 1.43.0 1.44 1.44.0
    139                               1.45 1.45.0 1.46 1.46.0 1.46.1)
    140 IF( NOT TARDIS )
    141   FIND_PACKAGE(Boost 1.35 REQUIRED thread filesystem system date_time)
     137SET(Boost_ADDITIONAL_VERSIONS 1.40 1.40.0 1.41 1.41.0 1.42 1.42.0 1.43 1.43.0
     138                              1.44 1.44.0 1.45 1.45.0 1.46 1.46.0 1.46.1)
     139IF(NOT TARDIS)
     140  FIND_PACKAGE(Boost 1.40 REQUIRED thread filesystem system date_time)
    142141ENDIF()
    143142# No auto linking, so this option is useless anyway
    144143MARK_AS_ADVANCED(Boost_LIB_DIAGNOSTIC_DEFINITIONS)
    145 # Complain about incompatibilities
    146 IF(GCC_VERSION)
    147   COMPARE_VERSION_STRINGS("${GCC_VERSION}" "4.4.0" _compare_result)
    148   IF(NOT _compare_result LESS 0)
    149     IF(${Boost_VERSION} LESS 103700)
    150       MESSAGE(STATUS "Warning: Boost versions earlier than 1.37 may not compile with GCC 4.4 or later!")
    151     ENDIF()
    152   ENDIF()
    153 ENDIF()
    154144
    155145##### OGRE #####
Note: See TracChangeset for help on using the changeset viewer.