spdlog/tests/CMakeLists.txt

25 lines
548 B
CMake
Raw Normal View History

set(SPDLOG_UTESTS_SOURCES
2018-11-20 05:14:21 -05:00
test_errors.cpp
2018-11-22 05:31:16 -05:00
test_file_helper.cpp
2018-11-20 05:14:21 -05:00
test_file_logging.cpp
2018-02-23 09:49:26 -05:00
test_misc.cpp
test_pattern_formatter.cpp
2018-05-22 14:59:27 -04:00
test_async.cpp
includes.h
2018-10-13 12:23:11 -04:00
test_registry.cpp
test_macros.cpp
utils.cpp
utils.h
main.cpp
test_mpmc_q.cpp
test_sink.h
2018-09-27 18:30:29 -04:00
test_fmt_helper.cpp)
2019-05-18 00:33:44 -04:00
add_executable(spdlog-utests ${SPDLOG_UTESTS_SOURCES})
target_link_libraries(spdlog-utests spdlog)
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs")
enable_testing()
2019-05-18 00:33:44 -04:00
add_test(NAME spdlog-utests COMMAND spdlog-utests)