mirror of
https://github.com/Naios/continuable.git
synced 2025-12-06 08:46:44 +08:00
10 lines
187 B
CMake
10 lines
187 B
CMake
add_executable(test-mock
|
|
${CMAKE_CURRENT_LIST_DIR}/test-mock.cpp)
|
|
|
|
target_link_libraries(test-mock
|
|
PRIVATE
|
|
continuable)
|
|
|
|
add_test(NAME continuable-mock-tests
|
|
COMMAND test-mock)
|