make_tuple_promise, then_tuple

This commit is contained in:
2018-12-15 09:20:01 +07:00
parent 75177fb5f8
commit 8f5f7bc7ab
6 changed files with 382 additions and 44 deletions

View File

@@ -6,6 +6,10 @@ find_package(Threads REQUIRED)
file(GLOB test_sources "*.cpp" "*.hpp")
add_executable(${PROJECT_NAME} ${test_sources})
if(MSVC)
target_compile_options(${PROJECT_NAME} PRIVATE /bigobj)
endif(MSVC)
target_link_libraries(${PROJECT_NAME}
Threads::Threads)