Sha256: fda400bf530d1d50b0e41a59aa82094060ad0184655a0d513bceec689f70aa31

Contents?: true

Size: 803 Bytes

Versions: 16

Compression:

Stored size: 803 Bytes

Contents

# Copyright(c) 2019 spdlog authors Distributed under the MIT License (http://opensource.org/licenses/MIT)

cmake_minimum_required(VERSION 3.1)
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)

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
couchbase-3.0.0.alpha.4-x86_64-linux ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.4-x86_64-darwin-19 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.4-universal-darwin-19 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.4 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.3-x86_64-linux ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.3-x86_64-darwin-19 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.3-universal-darwin-19 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.3 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.2-x86_64-linux ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.2-x86_64-darwin-19 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.2-universal-darwin-19 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.2 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.1-x86_64-linux ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.1-x86_64-darwin-19 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.1-universal-darwin-19 ext/third_party/spdlog/bench/CMakeLists.txt
couchbase-3.0.0.alpha.1 ext/third_party/spdlog/bench/CMakeLists.txt