From 4f28c5ffffd00f9a8fa67392e594e5207cb65158 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 12 Jun 2018 14:40:30 -0400 Subject: [PATCH] Windows: cmake: Add VS2017 15.6 & 15.7 build support --- cmake/cef_variables.cmake.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmake/cef_variables.cmake.in b/cmake/cef_variables.cmake.in index 3da243590..c5b09e316 100644 --- a/cmake/cef_variables.cmake.in +++ b/cmake/cef_variables.cmake.in @@ -336,12 +336,15 @@ if(OS_WINDOWS) option(USE_SANDBOX "Enable or disable use of the sandbox." ON) if(USE_SANDBOX) # Check if the current MSVC version is compatible with the cef_sandbox.lib - # static library. + # static library. For a list of all version numbers see + # https://en.wikipedia.org/wiki/Microsoft_Visual_C%2B%2B#Internal_version_numbering list(APPEND supported_msvc_versions 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 + 1913 # VS2017 version 15.6 + 1914 # VS2017 version 15.7 ) list(FIND supported_msvc_versions ${MSVC_VERSION} _index) if (${_index} EQUAL -1)