2020-02-07 22:39:26 +08:00
|
|
|
cmake_minimum_required(VERSION 3.2)
|
|
|
|
|
2019-07-01 07:06:09 +08:00
|
|
|
project(spdlog_utests CXX)
|
|
|
|
|
2020-02-07 22:39:26 +08:00
|
|
|
if(NOT TARGET spdlog)
|
|
|
|
# Stand-alone build
|
|
|
|
find_package(spdlog REQUIRED)
|
|
|
|
endif()
|
|
|
|
|
2019-07-01 20:03:53 +08:00
|
|
|
include(../cmake/utils.cmake)
|
|
|
|
|
2019-06-28 22:29:52 +08:00
|
|
|
find_package(PkgConfig)
|
|
|
|
if(PkgConfig_FOUND)
|
|
|
|
pkg_check_modules(systemd libsystemd)
|
|
|
|
endif()
|
|
|
|
|
2018-02-12 03:45:56 +08:00
|
|
|
set(SPDLOG_UTESTS_SOURCES
|
2018-11-22 18:31:16 +08:00
|
|
|
test_file_helper.cpp
|
2018-11-20 18:14:21 +08:00
|
|
|
test_file_logging.cpp
|
2019-09-15 23:34:29 +08:00
|
|
|
test_daily_logger.cpp
|
2018-02-23 22:49:26 +08:00
|
|
|
test_misc.cpp
|
2020-02-04 21:38:26 +08:00
|
|
|
test_eventlog.cpp
|
2018-08-15 03:33:47 +08:00
|
|
|
test_pattern_formatter.cpp
|
2018-05-23 02:59:27 +08:00
|
|
|
test_async.cpp
|
2018-10-14 00:23:11 +08:00
|
|
|
test_registry.cpp
|
2018-02-12 03:45:56 +08:00
|
|
|
test_macros.cpp
|
|
|
|
utils.cpp
|
2018-08-15 03:33:47 +08:00
|
|
|
main.cpp
|
|
|
|
test_mpmc_q.cpp
|
2019-11-04 23:43:30 +08:00
|
|
|
test_dup_filter.cpp
|
2019-06-20 06:02:54 +08:00
|
|
|
test_fmt_helper.cpp
|
2019-06-28 13:07:15 +08:00
|
|
|
test_stdout_api.cpp
|
2019-10-20 22:40:56 +08:00
|
|
|
test_backtrace.cpp
|
|
|
|
test_create_dir.cpp)
|
2018-02-12 03:45:56 +08:00
|
|
|
|
2019-08-19 16:31:33 +08:00
|
|
|
if(NOT SPDLOG_NO_EXCEPTIONS)
|
|
|
|
list(APPEND SPDLOG_UTESTS_SOURCES test_errors.cpp)
|
|
|
|
endif()
|
|
|
|
|
2019-06-28 22:29:52 +08:00
|
|
|
if(systemd_FOUND)
|
2019-07-07 19:09:23 +08:00
|
|
|
list(APPEND SPDLOG_UTESTS_SOURCES test_systemd.cpp)
|
2019-06-28 22:29:52 +08:00
|
|
|
endif()
|
|
|
|
|
2019-11-04 23:19:18 +08:00
|
|
|
|
2018-08-15 03:33:47 +08:00
|
|
|
enable_testing()
|
2019-05-29 05:04:36 +08:00
|
|
|
|
2019-10-25 15:19:15 +08:00
|
|
|
function(spdlog_prepare_test test_target spdlog_lib)
|
2019-10-25 03:57:47 +08:00
|
|
|
add_executable(${test_target} ${SPDLOG_UTESTS_SOURCES})
|
|
|
|
spdlog_enable_warnings(${test_target})
|
|
|
|
target_link_libraries(${test_target} PRIVATE ${spdlog_lib})
|
2019-06-28 22:29:52 +08:00
|
|
|
if(systemd_FOUND)
|
2019-10-25 03:57:47 +08:00
|
|
|
target_link_libraries(${test_target} PRIVATE ${systemd_LIBRARIES})
|
2019-06-28 22:29:52 +08:00
|
|
|
endif()
|
2019-06-10 23:09:36 +08:00
|
|
|
if(SPDLOG_SANITIZE_ADDRESS)
|
2019-10-25 03:57:47 +08:00
|
|
|
spdlog_enable_sanitizer(${test_target})
|
2019-06-10 23:09:36 +08:00
|
|
|
endif()
|
2019-10-28 15:52:59 +08:00
|
|
|
add_test(NAME ${test_target} COMMAND ${test_target})
|
2020-02-07 21:20:54 +08:00
|
|
|
set_tests_properties(${test_target} PROPERTIES RUN_SERIAL ON)
|
2019-10-25 15:19:15 +08:00
|
|
|
endfunction()
|
2019-10-25 03:57:47 +08:00
|
|
|
|
|
|
|
# The compiled library tests
|
|
|
|
if(SPDLOG_BUILD_TESTS)
|
2019-10-25 15:19:15 +08:00
|
|
|
spdlog_prepare_test(spdlog-utests spdlog::spdlog)
|
2019-05-29 05:04:36 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# The header-only library version tests
|
2019-07-01 07:06:09 +08:00
|
|
|
if(SPDLOG_BUILD_TESTS_HO)
|
2019-10-25 15:19:15 +08:00
|
|
|
spdlog_prepare_test(spdlog-utests-ho spdlog::spdlog_header_only)
|
2019-06-10 23:32:10 +08:00
|
|
|
endif()
|