mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-26 10:31:34 +08:00
63535f140b
Some checks are pending
linux / ${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }} ${{ matrix.config.build_type }} ${{ matrix.config.asan == 'ON' && 'ASAN' || '' }}${{ matrix.config.tsan == 'ON' && 'TSAN' || '' }}) (map[asan:ON build_type:Debug … (push) Waiting to run
linux / ${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }} ${{ matrix.config.build_type }} ${{ matrix.config.asan == 'ON' && 'ASAN' || '' }}${{ matrix.config.tsan == 'ON' && 'TSAN' || '' }}) (map[build_type:Debug compiler… (push) Waiting to run
linux / ${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }} ${{ matrix.config.build_type }} ${{ matrix.config.asan == 'ON' && 'ASAN' || '' }}${{ matrix.config.tsan == 'ON' && 'TSAN' || '' }}) (map[build_type:Release compil… (push) Waiting to run
macos / macOS Clang (C++17, Release) (push) Waiting to run
windows / build (map[BUILD_EXAMPLE:OFF BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:20 FATAL_ERRORS:ON GENERATOR:Visual Studio 17 2022 USE_STD_FORMAT:ON WCHAR:OFF WCHAR_FILES:OFF]) (push) Waiting to run
windows / build (map[BUILD_EXAMPLE:OFF BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:20 FATAL_ERRORS:ON GENERATOR:Visual Studio 17 2022 USE_STD_FORMAT:ON WCHAR:ON WCHAR_FILES:ON]) (push) Waiting to run
windows / build (map[BUILD_EXAMPLE:ON BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:17 FATAL_ERRORS:ON GENERATOR:Visual Studio 17 2022 USE_STD_FORMAT:OFF WCHAR:OFF WCHAR_FILES:OFF]) (push) Waiting to run
windows / build_2019 (map[BUILD_EXAMPLE:ON BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:17 FATAL_ERRORS:ON GENERATOR:Visual Studio 16 2019 USE_STD_FORMAT:OFF WCHAR:OFF WCHAR_FILES:OFF]) (push) Waiting to run
windows / build_2019 (map[BUILD_EXAMPLE:ON BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:20 FATAL_ERRORS:ON GENERATOR:Visual Studio 16 2019 USE_STD_FORMAT:OFF WCHAR:OFF WCHAR_FILES:OFF]) (push) Waiting to run
* Removed SPDLOG_USE_STD_FORMAT * Removed SPDLOG_USE_STD_FORMAT * clang-format * Fix windows.yml ci * Fix ci
40 lines
1.3 KiB
CMake
40 lines
1.3 KiB
CMake
# Copyright(c) 2019 spdlog authors Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
cmake_minimum_required(VERSION 3.14)
|
|
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)
|
|
|
|
if(NOT benchmark_FOUND)
|
|
message(STATUS "Using CMake Version ${CMAKE_VERSION}")
|
|
# 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)
|
|
set_target_properties(benchmark PROPERTIES FOLDER "third-party")
|
|
endif()
|
|
|
|
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)
|