mirror of
https://github.com/reactos/CMake.git
synced 2025-02-26 15:05:34 +00:00
FindwxWidgets: Use MSVC_VERSION
instead of MSVC##
This commit is contained in:
parent
e1adec32b8
commit
73f7d26682
@ -498,15 +498,15 @@ if(wxWidgets_FIND_STYLE STREQUAL "win32")
|
||||
set(_WX_TOOL gcc)
|
||||
elseif(MSVC)
|
||||
set(_WX_TOOL vc)
|
||||
if(MSVC14)
|
||||
if(MSVC_VERSION EQUAL 1900)
|
||||
set(_WX_TOOLVER 140)
|
||||
elseif(MSVC12)
|
||||
elseif(MSVC_VERSION EQUAL 1800)
|
||||
set(_WX_TOOLVER 120)
|
||||
elseif(MSVC11)
|
||||
elseif(MSVC_VERSION EQUAL 1700)
|
||||
set(_WX_TOOLVER 110)
|
||||
elseif(MSVC10)
|
||||
elseif(MSVC_VERSION EQUAL 1600)
|
||||
set(_WX_TOOLVER 100)
|
||||
elseif(MSVC90)
|
||||
elseif(MSVC_VERSION EQUAL 1500)
|
||||
set(_WX_TOOLVER 90)
|
||||
endif()
|
||||
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
|
Loading…
x
Reference in New Issue
Block a user