make_any_promise, then_any

This commit is contained in:
2018-12-10 07:27:24 +07:00
parent 77fa05c3f1
commit 704715db17
3 changed files with 235 additions and 65 deletions

View File

@@ -1,6 +1,10 @@
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project(promise)
if(MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj")
endif(MSVC)
file(GLOB test_sources "*.cpp" "*.hpp")
add_executable(${PROJECT_NAME} ${test_sources})
set_target_properties(${PROJECT_NAME} PROPERTIES