Sha256: 8858e487faf140cdeb4c17382dab79b70df6cb321deb9807a994b250a0385031

Contents?: true

Size: 1.73 KB

Versions: 16

Compression:

Stored size: 1.73 KB

Contents

cmake_minimum_required(VERSION 3.2)

project(spdlog_utests CXX)

if(NOT TARGET spdlog)
    # Stand-alone build
    find_package(spdlog REQUIRED)
endif()

include(../cmake/utils.cmake)

find_package(PkgConfig)
if(PkgConfig_FOUND)
    pkg_check_modules(systemd libsystemd)
endif()

set(SPDLOG_UTESTS_SOURCES
    test_file_helper.cpp
    test_file_logging.cpp
    test_daily_logger.cpp
    test_misc.cpp
    test_eventlog.cpp
    test_pattern_formatter.cpp
    test_async.cpp
    test_registry.cpp
    test_macros.cpp
    utils.cpp
    main.cpp
    test_mpmc_q.cpp
    test_dup_filter.cpp
    test_fmt_helper.cpp
    test_stdout_api.cpp
    test_backtrace.cpp
    test_create_dir.cpp
    test_cfg.cpp
    test_time_point.cpp)

if(NOT SPDLOG_NO_EXCEPTIONS)
    list(APPEND SPDLOG_UTESTS_SOURCES test_errors.cpp)
endif()

if(systemd_FOUND)
    list(APPEND SPDLOG_UTESTS_SOURCES test_systemd.cpp)
endif()

enable_testing()

function(spdlog_prepare_test test_target spdlog_lib)
    add_executable(${test_target} ${SPDLOG_UTESTS_SOURCES})
    spdlog_enable_warnings(${test_target})
    target_link_libraries(${test_target} PRIVATE ${spdlog_lib})
    if(systemd_FOUND)
        target_link_libraries(${test_target} PRIVATE ${systemd_LIBRARIES})
    endif()
    if(SPDLOG_SANITIZE_ADDRESS)
        spdlog_enable_sanitizer(${test_target})
    endif()
    add_test(NAME ${test_target} COMMAND ${test_target})
    set_tests_properties(${test_target} PROPERTIES RUN_SERIAL ON)
endfunction()

# The compiled library tests
if(SPDLOG_BUILD_TESTS OR SPDLOG_BUILD_ALL)
    spdlog_prepare_test(spdlog-utests spdlog::spdlog)
endif()

# The header-only library version tests
if(SPDLOG_BUILD_TESTS_HO OR SPDLOG_BUILD_ALL)
    spdlog_prepare_test(spdlog-utests-ho spdlog::spdlog_header_only)
endif()

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/tests/CMakeLists.txt
couchbase-3.0.0.alpha.4-x86_64-darwin-19 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.4-universal-darwin-19 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.4 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.3-x86_64-linux ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.3-x86_64-darwin-19 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.3-universal-darwin-19 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.3 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.2-x86_64-linux ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.2-x86_64-darwin-19 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.2-universal-darwin-19 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.2 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.1-x86_64-linux ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.1-x86_64-darwin-19 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.1-universal-darwin-19 ext/third_party/spdlog/tests/CMakeLists.txt
couchbase-3.0.0.alpha.1 ext/third_party/spdlog/tests/CMakeLists.txt