We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bebe3ca + 2435169 commit 2512bcfCopy full SHA for 2512bcf
CMakeLists.txt
@@ -25,7 +25,10 @@ endif()
25
add_library(stdx INTERFACE)
26
target_compile_features(stdx INTERFACE cxx_std_${CMAKE_CXX_STANDARD})
27
target_compile_options(
28
- stdx INTERFACE $<$<CXX_COMPILER_ID:Clang>:-Wno-missing-braces>)
+ stdx
29
+ INTERFACE
30
+ $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Wno-missing-braces>
31
+)
32
target_link_libraries_system(stdx INTERFACE concurrency boost_mp11
33
fmt::fmt-header-only)
34
0 commit comments