summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Strelsky <ajs222@njit.edu>2021-09-18 08:26:39 -0400
committerAndrew Strelsky <ajs222@njit.edu>2021-09-18 08:37:34 -0400
commit25cd0342c484a00f6a03e7d92aa37feeb2b5791d (patch)
treec9f72d49842a3b4fbdad2aa4bffee4c165bb5ab5
parent6d7801deb7a4cd83d95605f355b1f5aa1c576f31 (diff)
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()
# boost asio's concept usage doesn't play nicely with some compilers yet.
add_definitions(-DBOOST_ASIO_DISABLE_CONCEPTS)
if (MSVC)
- add_compile_options(/std:c++latest)
+ add_compile_options($<$<COMPILE_LANGUAGE:CXX>:/std:c++latest>)
# cubeb and boost still make use of deprecated result_of.
add_definitions(-D_HAS_DEPRECATED_RESULT_OF)