FindGTK2: Do not fail on MSVC11 if vc100 libraries are available
This commit is contained in:
parent
e021d33f9c
commit
eb1630112d
|
@ -269,6 +269,9 @@ function(_GTK2_FIND_LIBRARY _var _lib _expand_vc _append_version)
|
||||||
set(_library ${_library}-vc90)
|
set(_library ${_library}-vc90)
|
||||||
elseif(MSVC10)
|
elseif(MSVC10)
|
||||||
set(_library ${_library}-vc100)
|
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()
|
endif()
|
||||||
set(_library_d ${_library}-d)
|
set(_library_d ${_library}-d)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue