spdlog/tests/CMakeLists.txt

70 lines
1.6 KiB
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.2)
2019-07-01 07:06:09 +08:00
project(spdlog_utests CXX)
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()
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
test_eventlog.cpp
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
test_macros.cpp
utils.cpp
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)
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()
enable_testing()
2019-05-29 05:04:36 +08:00
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})
2019-06-28 22:29:52 +08:00
if(systemd_FOUND)
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)
spdlog_enable_sanitizer(${test_target})
2019-06-10 23:09:36 +08:00
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)
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)
spdlog_prepare_test(spdlog-utests-ho spdlog::spdlog_header_only)
2019-06-10 23:32:10 +08:00
endif()