Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7383


Ignore:
Timestamp:
Sep 8, 2010, 4:11:44 PM (14 years ago)
Author:
rgrieder
Message:

Minimum CMake version on Windows is actually 2.6.3 because of some problem with FindBoost and MSVC generator.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/CMakeLists.txt

    r7163 r7383  
    2424 #
    2525
    26 CMAKE_MINIMUM_REQUIRED(VERSION 2.6 FATAL_ERROR)
     26IF(WIN32)
     27  CMAKE_MINIMUM_REQUIRED(VERSION 2.6.3 FATAL_ERROR)
     28ELSE()
     29  CMAKE_MINIMUM_REQUIRED(VERSION 2.6   FATAL_ERROR)
     30ENDIF()
    2731
    2832# Keep devs from using the root directory as binary directory (messes up the source tree)
Note: See TracChangeset for help on using the changeset viewer.