diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-22 21:16:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 21:16:22 +0300 |
commit | 83e80d79672210355d0291e30bd89bd03c672ca6 (patch) | |
tree | b2a5ac4a5c2d5b73407b3499193fad2e730f8760 /indra | |
parent | e1623bb276f83a43ce7a197e388720c05bdefe61 (diff) | |
parent | 10fb2fc411d17f323c521c4182fe9b081201e62a (diff) |
Merge pull request #1546 from Ansariel/main-vs-fix
Adjust Copy3rdPartyLibs.cmake for Visual Studio 2022 17.10.0 and greater
Diffstat (limited to 'indra')
-rw-r--r-- | indra/cmake/Copy3rdPartyLibs.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/Copy3rdPartyLibs.cmake b/indra/cmake/Copy3rdPartyLibs.cmake index 7938d4f54b..27b20ee3b1 100644 --- a/indra/cmake/Copy3rdPartyLibs.cmake +++ b/indra/cmake/Copy3rdPartyLibs.cmake @@ -107,7 +107,7 @@ if(WINDOWS) set(MSVC_VER 140) elseif (MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1930) # Visual Studio 2019 set(MSVC_VER 140) - elseif (MSVC_VERSION GREATER_EQUAL 1930 AND MSVC_VERSION LESS 1940) # Visual Studio 2022 + elseif (MSVC_VERSION GREATER_EQUAL 1930 AND MSVC_VERSION LESS 1950) # Visual Studio 2022 set(MSVC_VER 140) else (MSVC80) MESSAGE(WARNING "New MSVC_VERSION ${MSVC_VERSION} of MSVC: adapt Copy3rdPartyLibs.cmake") |