Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8328


Ignore:
Timestamp:
Apr 25, 2011, 8:49:59 PM (13 years ago)
Author:
rgrieder
Message:

Orxonox only works with newer CMake builds if using Visual Studio 2010.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/kicklib2/CMakeLists.txt

    r8321 r8328  
    2525
    2626IF(WIN32)
    27   CMAKE_MINIMUM_REQUIRED(VERSION 2.6.3 FATAL_ERROR)
     27  IF(MSVC10)
     28    CMAKE_MINIMUM_REQUIRED(VERSION 2.8.3 FATAL_ERROR)
     29  ELSE()
     30    CMAKE_MINIMUM_REQUIRED(VERSION 2.6.3 FATAL_ERROR)
     31  ENDIF()
    2832ELSE()
    29   CMAKE_MINIMUM_REQUIRED(VERSION 2.6   FATAL_ERROR)
     33  CMAKE_MINIMUM_REQUIRED(VERSION 2.6 FATAL_ERROR)
    3034ENDIF()
    3135
Note: See TracChangeset for help on using the changeset viewer.