summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2019-10-17 13:28:33 -0400
committerNat Goodspeed <nat@lindenlab.com>2020-03-25 18:58:16 -0400
commitd43dcc50c588631f9d55f7d9b959674a87bf9e92 (patch)
treece989272bde60476d4aaeb2015f3a2e7fbe6ce55
parent79a3e391d3c992925230ff01551747e7edccb0ca (diff)
DRTVWR-476: We've observed a couple different values for VS 2017.
-rw-r--r--indra/cmake/Copy3rdPartyLibs.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/Copy3rdPartyLibs.cmake b/indra/cmake/Copy3rdPartyLibs.cmake
index 3f669c833a..7ee13bb056 100644
--- a/indra/cmake/Copy3rdPartyLibs.cmake
+++ b/indra/cmake/Copy3rdPartyLibs.cmake
@@ -81,7 +81,7 @@ if(WINDOWS)
elseif (MSVC_VERSION EQUAL 1800) # VisualStudio 2013, which is (sigh) VS 12
list(APPEND LMSVC_VER 120)
list(APPEND LMSVC_VERDOT 12.0)
- elseif (MSVC_VERSION EQUAL 1916) # Visual Studio 2017
+ elseif (MSVC_VERSION EQUAL 1915 OR MSVC_VERSION EQUAL 1916) # Visual Studio 2017
list(APPEND LMSVC_VER 150)
list(APPEND LMSVC_VERDOT 15.0)
else (MSVC80)