diff options
| author | 2021-09-18 08:26:39 -0400 | |
|---|---|---|
| committer | 2021-09-18 08:37:34 -0400 | |
| commit | 25cd0342c484a00f6a03e7d92aa37feeb2b5791d (patch) | |
| tree | c9f72d49842a3b4fbdad2aa4bffee4c165bb5ab5 | |
| parent | Merge pull request #6950 from german77/multiplay (diff) | |
| download | yuzu-25cd0342c484a00f6a03e7d92aa37feeb2b5791d.tar.gz yuzu-25cd0342c484a00f6a03e7d92aa37feeb2b5791d.tar.xz yuzu-25cd0342c484a00f6a03e7d92aa37feeb2b5791d.zip | |
Fix "Unknown C standard control flag" warning
| -rw-r--r-- | CMakeLists.txt | 2 |
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. |
| 136 | add_definitions(-DBOOST_ASIO_DISABLE_CONCEPTS) | 136 | add_definitions(-DBOOST_ASIO_DISABLE_CONCEPTS) |
| 137 | if (MSVC) | 137 | if (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) |