summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Andrew Strelsky2021-09-18 08:26:39 -0400
committerGravatar Andrew Strelsky2021-09-18 08:37:34 -0400
commit25cd0342c484a00f6a03e7d92aa37feeb2b5791d (patch)
treec9f72d49842a3b4fbdad2aa4bffee4c165bb5ab5
parentMerge pull request #6950 from german77/multiplay (diff)
downloadyuzu-25cd0342c484a00f6a03e7d92aa37feeb2b5791d.tar.gz
yuzu-25cd0342c484a00f6a03e7d92aa37feeb2b5791d.tar.xz
yuzu-25cd0342c484a00f6a03e7d92aa37feeb2b5791d.zip
Fix "Unknown C standard control flag" warning
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5df2ff3fa..870d0ebdd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -135,7 +135,7 @@ endif()
135# boost asio's concept usage doesn't play nicely with some compilers yet. 135# boost asio's concept usage doesn't play nicely with some compilers yet.
136add_definitions(-DBOOST_ASIO_DISABLE_CONCEPTS) 136add_definitions(-DBOOST_ASIO_DISABLE_CONCEPTS)
137if (MSVC) 137if (MSVC)
138 add_compile_options(/std:c++latest) 138 add_compile_options($<$<COMPILE_LANGUAGE:CXX>:/std:c++latest>)
139 139
140 # cubeb and boost still make use of deprecated result_of. 140 # cubeb and boost still make use of deprecated result_of.
141 add_definitions(-D_HAS_DEPRECATED_RESULT_OF) 141 add_definitions(-D_HAS_DEPRECATED_RESULT_OF)