mirror of
https://github.com/Naios/continuable.git
synced 2025-12-06 08:46:44 +08:00
22 lines
401 B
CMake
22 lines
401 B
CMake
if(NOT TARGET function2)
|
|
add_subdirectory(function2)
|
|
endif()
|
|
|
|
if (CTI_CONTINUABLE_WITH_TESTS OR CTI_CONTINUABLE_WITH_EXAMPLES)
|
|
if(NOT TARGET gtest)
|
|
add_subdirectory(googletest)
|
|
endif()
|
|
|
|
if(NOT TARGET cxx_function)
|
|
add_subdirectory(cxx_function)
|
|
endif()
|
|
|
|
if(NOT TARGET asio)
|
|
add_subdirectory(asio)
|
|
endif()
|
|
|
|
if(NOT TARGET boost)
|
|
add_subdirectory(boost)
|
|
endif()
|
|
endif()
|