File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,10 @@ set_target_properties(common_test_settings PROPERTIES
9292 MSVC_DEBUG_INFORMATION_FORMAT Embedded
9393 )
9494target_include_directories (common_test_settings INTERFACE "${CMAKE_CURRENT_LIST_DIR} " )
95- target_compile_definitions (common_test_settings INTERFACE STDEXEC_NAMESPACE=std::execution )
95+ target_compile_definitions (common_test_settings INTERFACE
96+ STDEXEC_NAMESPACE=std::execution
97+ $<$<PLATFORM_ID :Windows >:NOMINMAX >
98+ )
9699target_compile_options (common_test_settings INTERFACE
97100 $<$<CXX_COMPILER_ID :MSVC >:/wd4714 > # function marked as __forceinline not inlined
98101 $<$<CXX_COMPILER_ID :GNU >:-Wno -maybe -uninitialized > # warnings being emitted from stdlib headers, why?
Original file line number Diff line number Diff line change 1818#include " exec/libdispatch_queue.hpp"
1919#include " stdexec/execution.hpp"
2020
21+ #include < numeric>
22+ #include < utility>
23+ #include < vector>
24+
2125namespace
2226{
2327 TEST_CASE (" libdispatch queue should be able to process tasks" )
You can’t perform that action at this time.
0 commit comments