mirror of
https://github.com/Naios/continuable.git
synced 2025-12-06 16:56:44 +08:00
11 lines
272 B
CMake
11 lines
272 B
CMake
add_executable(continuable-tests
|
|
${CMAKE_CURRENT_LIST_DIR}/test-chaining.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/test-unwrap.cpp)
|
|
|
|
target_link_libraries(continuable-tests
|
|
PRIVATE
|
|
continuable
|
|
gtest-main)
|
|
|
|
add_test(NAME continuable-unit-tests COMMAND continuable-tests)
|