mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 08:25:43 +08:00
ae9627c64c
* Reduces the range of possible version we'd need to test with. * Enables newer policies reducing possible deprecation warnings from new policies. * Allows removing some code for compatibility with older versions. * Coincides with LLVM's bump to requiring CMake 3.13.
26 lines
804 B
CMake
26 lines
804 B
CMake
# Copyright(c) 2019 spdlog authors Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
project(spdlog_bench CXX)
|
|
|
|
if(NOT TARGET spdlog)
|
|
# Stand-alone build
|
|
find_package(spdlog CONFIG REQUIRED)
|
|
endif()
|
|
|
|
find_package(Threads REQUIRED)
|
|
find_package(benchmark CONFIG REQUIRED)
|
|
|
|
add_executable(bench bench.cpp)
|
|
spdlog_enable_warnings(bench)
|
|
target_link_libraries(bench PRIVATE spdlog::spdlog)
|
|
|
|
add_executable(async_bench async_bench.cpp)
|
|
target_link_libraries(async_bench PRIVATE spdlog::spdlog)
|
|
|
|
add_executable(latency latency.cpp)
|
|
target_link_libraries(latency PRIVATE benchmark::benchmark spdlog::spdlog)
|
|
|
|
add_executable(formatter-bench formatter-bench.cpp)
|
|
target_link_libraries(formatter-bench PRIVATE benchmark::benchmark spdlog::spdlog)
|