spdlog/tests/CMakeLists.txt

92 lines
2.4 KiB
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.14)
2019-07-01 07:06:09 +08:00
project(spdlog_utests CXX)
2020-09-26 20:34:05 +08:00
if(NOT TARGET spdlog)
2020-05-02 16:42:08 +08:00
# Stand-alone build
find_package(spdlog REQUIRED)
2020-09-26 20:34:05 +08:00
endif()
2019-07-01 20:03:53 +08:00
include(../cmake/utils.cmake)
2019-06-28 22:29:52 +08:00
find_package(PkgConfig)
2020-09-26 20:34:05 +08:00
if(PkgConfig_FOUND)
2020-05-02 16:42:08 +08:00
pkg_check_modules(systemd libsystemd)
2020-09-26 20:34:05 +08:00
endif()
2019-06-28 22:29:52 +08:00
find_package(Catch2 3 QUIET)
2023-06-07 18:23:44 +08:00
if(Catch2_FOUND)
message(STATUS "Packaged version of Catch will be used.")
else()
message(STATUS "Bundled version of Catch will be downloaded and used.")
include(FetchContent)
2023-12-23 00:04:53 +08:00
FetchContent_Declare(Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
2023-12-23 00:18:20 +08:00
GIT_TAG 53d0d913a422d356b23dd927547febdf69ee9081 # v3.5.0
2023-12-23 00:04:53 +08:00
)
FetchContent_MakeAvailable(Catch2)
set_target_properties(Catch2 Catch2WithMain PROPERTIES FOLDER "third-party")
endif()
set(SPDLOG_UTESTS_SOURCES
2020-09-26 20:34:05 +08:00
test_file_helper.cpp
test_file_logging.cpp
2023-09-29 05:45:09 +08:00
test_daily_and_rotation_loggers.cpp
2020-09-26 20:34:05 +08:00
test_misc.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
2023-07-28 22:38:54 +08:00
test_create_dir.cpp
test_custom_callbacks.cpp
2020-09-26 20:34:05 +08:00
test_cfg.cpp
test_time_point.cpp
test_stopwatch.cpp
test_circular_q.cpp
2023-09-16 06:06:21 +08:00
test_ringbuffer_sink.cpp
test_source_location.cpp
2023-09-28 05:42:16 +08:00
test_log_level.cpp
2023-09-29 05:20:26 +08:00
test_include_sinks.cpp)
2023-09-29 03:58:50 +08:00
if(WIN32)
list(APPEND SPDLOG_UTESTS_SOURCES test_eventlog.cpp)
endif()
2020-09-26 20:34:05 +08:00
if(NOT SPDLOG_NO_EXCEPTIONS)
2020-05-02 16:42:08 +08:00
list(APPEND SPDLOG_UTESTS_SOURCES test_errors.cpp)
2020-09-26 20:34:05 +08:00
endif()
2020-09-26 20:34:05 +08:00
if(systemd_FOUND)
2020-05-02 16:42:08 +08:00
list(APPEND SPDLOG_UTESTS_SOURCES test_systemd.cpp)
2020-09-26 20:34:05 +08:00
endif()
2019-06-28 22:29:52 +08:00
if(NOT SPDLOG_USE_STD_FORMAT)
list(APPEND SPDLOG_UTESTS_SOURCES test_bin_to_hex.cpp)
endif()
enable_testing()
2019-05-29 05:04:36 +08:00
function(spdlog_prepare_test test_target spdlog_lib)
2020-05-02 16:42:08 +08:00
add_executable(${test_target} ${SPDLOG_UTESTS_SOURCES})
spdlog_enable_warnings(${test_target})
target_link_libraries(${test_target} PRIVATE ${spdlog_lib})
2020-09-26 20:34:05 +08:00
if(systemd_FOUND)
2020-05-02 16:42:08 +08:00
target_link_libraries(${test_target} PRIVATE ${systemd_LIBRARIES})
2020-09-26 20:34:05 +08:00
endif()
target_link_libraries(${test_target} PRIVATE Catch2::Catch2WithMain)
2020-09-26 20:34:05 +08:00
if(SPDLOG_SANITIZE_ADDRESS)
2020-05-02 16:42:08 +08:00
spdlog_enable_sanitizer(${test_target})
2020-09-26 20:34:05 +08:00
endif()
2020-05-02 16:42:08 +08:00
add_test(NAME ${test_target} COMMAND ${test_target})
set_tests_properties(${test_target} PROPERTIES RUN_SERIAL ON)
endfunction()
2020-09-26 20:34:05 +08:00
if(SPDLOG_BUILD_TESTS OR SPDLOG_BUILD_ALL)
2020-05-02 16:42:08 +08:00
spdlog_prepare_test(spdlog-utests spdlog::spdlog)
2020-09-26 20:34:05 +08:00
endif()