2020-05-02 16:38:14 +08:00
|
|
|
# Copyright(c) 2019 spdlog authors Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
2018-08-13 06:22:35 +08:00
|
|
|
|
2023-08-31 04:20:37 +08:00
|
|
|
cmake_minimum_required(VERSION 3.11)
|
2019-05-29 05:04:36 +08:00
|
|
|
project(spdlog_bench CXX)
|
2018-08-13 06:22:35 +08:00
|
|
|
|
|
|
|
if(NOT TARGET spdlog)
|
2020-05-02 16:42:08 +08:00
|
|
|
# Stand-alone build
|
|
|
|
find_package(spdlog CONFIG REQUIRED)
|
2018-08-13 06:22:35 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
find_package(Threads REQUIRED)
|
2020-10-17 20:59:04 +08:00
|
|
|
find_package(benchmark CONFIG)
|
2021-07-19 05:50:51 +08:00
|
|
|
if(NOT benchmark_FOUND)
|
2020-10-17 20:59:04 +08:00
|
|
|
message(STATUS "Using CMake Version ${CMAKE_VERSION}")
|
2023-08-31 04:20:37 +08:00
|
|
|
# User can fetch googlebenchmark
|
|
|
|
message(STATUS "Downloading GoogleBenchmark")
|
|
|
|
include(FetchContent)
|
|
|
|
|
|
|
|
# disable tests
|
|
|
|
set(BENCHMARK_ENABLE_TESTING OFF CACHE INTERNAL "")
|
|
|
|
# Do not build and run googlebenchmark tests
|
|
|
|
FetchContent_Declare(googlebenchmark GIT_REPOSITORY https://github.com/google/benchmark.git GIT_TAG v1.6.0)
|
|
|
|
FetchContent_MakeAvailable(googlebenchmark)
|
2020-10-17 20:59:04 +08:00
|
|
|
endif()
|
2018-08-13 06:22:35 +08:00
|
|
|
|
|
|
|
add_executable(bench bench.cpp)
|
2019-06-10 23:09:36 +08:00
|
|
|
spdlog_enable_warnings(bench)
|
2019-05-18 12:23:51 +08:00
|
|
|
target_link_libraries(bench PRIVATE spdlog::spdlog)
|
2018-08-13 06:22:35 +08:00
|
|
|
|
|
|
|
add_executable(async_bench async_bench.cpp)
|
2019-05-18 12:23:51 +08:00
|
|
|
target_link_libraries(async_bench PRIVATE spdlog::spdlog)
|
2018-08-13 06:22:35 +08:00
|
|
|
|
|
|
|
add_executable(latency latency.cpp)
|
2019-05-18 12:23:51 +08:00
|
|
|
target_link_libraries(latency PRIVATE benchmark::benchmark spdlog::spdlog)
|
2018-08-13 06:22:35 +08:00
|
|
|
|
2018-11-12 22:13:52 +08:00
|
|
|
add_executable(formatter-bench formatter-bench.cpp)
|
2019-05-18 12:23:51 +08:00
|
|
|
target_link_libraries(formatter-bench PRIVATE benchmark::benchmark spdlog::spdlog)
|
2023-10-01 22:42:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
# copy dll to the executable folder for msvc
|
|
|
|
if(MSVC AND (SPDLOG_BUILD_SHARED OR BUILD_SHARED_LIBS))
|
|
|
|
add_custom_command(TARGET bench POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:spdlog> $<TARGET_FILE_DIR:bench>)
|
|
|
|
endif()
|