separate benchmark target
This commit is contained in:
parent
041c192652
commit
e55c2a81f1
3 changed files with 10 additions and 3 deletions
|
@ -18,8 +18,13 @@ if(WITH_UNIT_TESTS)
|
||||||
enable_testing()
|
enable_testing()
|
||||||
include_directories(
|
include_directories(
|
||||||
vendor/Catch/single_include
|
vendor/Catch/single_include
|
||||||
vendor/json.hpp/include
|
vendor/json.hpp/include)
|
||||||
vendor/benchmark/include)
|
|
||||||
add_subdirectory(vendor/benchmark)
|
|
||||||
add_subdirectory(test)
|
add_subdirectory(test)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(WITH_BENCHMARK)
|
||||||
|
include_directories(
|
||||||
|
vendor/benchmark/include)
|
||||||
|
add_subdirectory(vendor/benchmark)
|
||||||
|
add_subdirectory(benchmark)
|
||||||
|
endif()
|
||||||
|
|
2
benchmark/CMakeLists.txt
Normal file
2
benchmark/CMakeLists.txt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
add_executable(mstch_benchmark benchmark_main.cpp)
|
||||||
|
target_link_libraries(mstch_benchmark mstch benchmark)
|
Loading…
Reference in a new issue