Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7959


Ignore:
Timestamp:
Feb 25, 2011, 3:06:23 AM (13 years ago)
Author:
rgrieder
Message:

Separate dependency package versioning for msvc and mingw.

File:
1 edited

Legend:

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

    r7944 r7959  
    3131#        But you can specify that the code only runs on 3.1 and higher
    3232#        or 4.0 and higher (so both 3.1 and 4.0 will work).
    33 SET(ALLOWED_MINIMUM_VERSIONS 3.1 4.0 5.0)
     33IF(MSVC)
     34  SET(ALLOWED_MINIMUM_VERSIONS 4.3 5.1 6.0)
     35ELSE()
     36  SET(ALLOWED_MINIMUM_VERSIONS 4.1 5.2)
     37ENDIF()
    3438
    3539IF(NOT EXISTS ${DEPENDENCY_PACKAGE_DIR}/version.txt)
Note: See TracChangeset for help on using the changeset viewer.