diff options
Diffstat (limited to 'test/benchmarks/CMakeLists.txt')
-rw-r--r-- | test/benchmarks/CMakeLists.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/benchmarks/CMakeLists.txt b/test/benchmarks/CMakeLists.txt new file mode 100644 index 0000000..89d9858 --- /dev/null +++ b/test/benchmarks/CMakeLists.txt @@ -0,0 +1,12 @@ +add_executable(benchmarks lexer.cpp) +set_target_properties(benchmarks PROPERTIES OUTPUT_NAME math-server-benchmarks) + +target_link_libraries(benchmarks PRIVATE lexer) +target_include_directories(benchmarks PRIVATE ../..) + +target_link_libraries(benchmarks PRIVATE benchmark benchmark_main) + +install(TARGETS benchmarks RUNTIME DESTINATION bin) +if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + install(FILES "$<TARGET_PDB_FILE:benchmarks>" DESTINATION bin OPTIONAL) +endif() |