Skip to content
Snippets Groups Projects
Commit 28deadab authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-10297: Need VS switch /std:c++17 to use std::string_view.

parent d10badf0
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,8 @@ if (WINDOWS) ...@@ -66,7 +66,8 @@ if (WINDOWS)
# CP changed to only append the flag for 32bit builds - on 64bit builds, # CP changed to only append the flag for 32bit builds - on 64bit builds,
# locally at least, the build output is spammed with 1000s of 'D9002' # locally at least, the build output is spammed with 1000s of 'D9002'
# warnings about this switch being ignored. # warnings about this switch being ignored.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP") # We need std::string_view, but that's not available without /std:c++17.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP /std:c++17")
if( ADDRESS_SIZE EQUAL 32 ) if( ADDRESS_SIZE EQUAL 32 )
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /p:PreferredToolArchitecture=x64") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /p:PreferredToolArchitecture=x64")
endif() endif()
......
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