2018-02-11 20:45:56 +01:00
|
|
|
project(spdlog-utests CXX)
|
2018-08-14 21:33:47 +02:00
|
|
|
|
2018-02-11 20:45:56 +01:00
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
|
|
|
set(SPDLOG_UTESTS_SOURCES
|
|
|
|
errors.cpp
|
|
|
|
file_helper.cpp
|
|
|
|
file_log.cpp
|
2018-02-23 16:49:26 +02:00
|
|
|
test_misc.cpp
|
2018-08-14 21:33:47 +02:00
|
|
|
test_pattern_formatter.cpp
|
2018-05-22 21:59:27 +03:00
|
|
|
test_async.cpp
|
2018-02-11 20:45:56 +01:00
|
|
|
includes.h
|
2018-10-13 19:23:11 +03:00
|
|
|
test_registry.cpp
|
2018-02-11 20:45:56 +01:00
|
|
|
test_macros.cpp
|
|
|
|
utils.cpp
|
|
|
|
utils.h
|
2018-08-14 21:33:47 +02:00
|
|
|
main.cpp
|
|
|
|
test_mpmc_q.cpp
|
|
|
|
test_sink.h
|
2018-09-28 01:30:29 +03:00
|
|
|
test_fmt_helper.cpp)
|
2018-02-11 20:45:56 +01:00
|
|
|
|
|
|
|
add_executable(${PROJECT_NAME} ${SPDLOG_UTESTS_SOURCES})
|
|
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE Threads::Threads)
|
2018-08-10 22:20:52 +02:00
|
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE spdlog::spdlog)
|
2018-02-11 20:45:56 +01:00
|
|
|
|
|
|
|
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs")
|
2018-08-14 21:33:47 +02:00
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
add_test(NAME ${PROJECT_NAME} COMMAND ${PROJECT_NAME})
|