Merge topic 'FindGTK2vs11'

eb16301 FindGTK2: Do not fail on MSVC11 if vc100 libraries are available
This commit is contained in:
Brad King 2013-07-02 09:04:12 -04:00 committed by CMake Topic Stage
commit 31d55ee8ac
1 changed files with 3 additions and 0 deletions

View File

@ -269,6 +269,9 @@ function(_GTK2_FIND_LIBRARY _var _lib _expand_vc _append_version)
set(_library ${_library}-vc90)
elseif(MSVC10)
set(_library ${_library}-vc100)
elseif(MSVC11)
# Up to gtkmm-win 2.22.0-2 there are no vc110 libraries but vc100 can be used
set(_library ${_library}-vc100)
endif()
set(_library_d ${_library}-d)
endif()