mirror of
https://github.com/Naios/continuable.git
synced 2025-12-06 08:46:44 +08:00
17 lines
352 B
CMake
17 lines
352 B
CMake
if (NOT CTI_CONTINUABLE_WITH_BENCHMARKS)
|
|
return()
|
|
endif()
|
|
|
|
add_executable(benchmark-simple
|
|
${CMAKE_CURRENT_LIST_DIR}/benchmark-simple.cpp)
|
|
|
|
target_link_libraries(benchmark-simple
|
|
PRIVATE
|
|
benchmark
|
|
benchmark_main
|
|
boost
|
|
continuable
|
|
continuable-features-flags
|
|
continuable-features-warnings
|
|
continuable-features-noexcept)
|