Skip to content
Snippets Groups Projects
Commit 8f207df1 authored by Brad King's avatar Brad King
Browse files

FindwxWidgets: Add support for VS 2017 v141 toolset

Issue: #16735
parent 73f7d266
No related branches found
No related tags found
No related merge requests found
......@@ -498,7 +498,9 @@ if(wxWidgets_FIND_STYLE STREQUAL "win32")
set(_WX_TOOL gcc)
elseif(MSVC)
set(_WX_TOOL vc)
if(MSVC_VERSION EQUAL 1900)
if(MSVC_VERSION EQUAL 1910)
set(_WX_TOOLVER 141)
elseif(MSVC_VERSION EQUAL 1900)
set(_WX_TOOLVER 140)
elseif(MSVC_VERSION EQUAL 1800)
set(_WX_TOOLVER 120)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment