Windows: cmake: Add VS2017 15.5 build support

This commit is contained in:
Marshall Greenblatt 2017-12-27 15:50:21 -05:00
parent a724e90d52
commit accf1f1613
1 changed files with 4 additions and 3 deletions

View File

@ -334,9 +334,10 @@ if(OS_WINDOWS)
# Check if the current MSVC version is compatible with the cef_sandbox.lib
# static library.
list(APPEND supported_msvc_versions
1900 # VS2015
1910 # VS2017 <= 15.2
1911 # VS2017 >= 15.3
1900 # VS2015 and updates 1, 2, & 3
1910 # VS2017 version 15.1 & 15.2
1911 # VS2017 version 15.3 & 15.4
1912 # VS2017 version 15.5
)
list(FIND supported_msvc_versions ${MSVC_VERSION} _index)
if (${_index} EQUAL -1)