summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2021-09-23 19:07:09 -0700
committerGravatar GitHub2021-09-23 19:07:09 -0700
commit4baef7905e88fae7a3486d24bf7a111ad4d30b8a (patch)
tree5cd0a1baec5befd6f81c8e20e44987903d20ac8f
parentMerge pull request #7068 from behunin/patch-3 (diff)
parentFix "Unknown C standard control flag" warning (diff)
downloadyuzu-4baef7905e88fae7a3486d24bf7a111ad4d30b8a.tar.gz
yuzu-4baef7905e88fae7a3486d24bf7a111ad4d30b8a.tar.xz
yuzu-4baef7905e88fae7a3486d24bf7a111ad4d30b8a.zip
Merge pull request #7043 from astrelsky/cmake
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)