mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
569 B
CMake
24 lines
569 B
CMake
project(spdlog-utests)
|
|
|
|
enable_testing()
|
|
find_package(Threads REQUIRED)
|
|
|
|
set(SPDLOG_UTESTS_SOURCES
|
|
errors.cpp
|
|
file_helper.cpp
|
|
file_log.cpp
|
|
format.cpp
|
|
includes.h
|
|
registry.cpp
|
|
test_macros.cpp
|
|
utils.cpp
|
|
utils.h
|
|
main.cpp)
|
|
|
|
add_executable(${PROJECT_NAME} ${SPDLOG_UTESTS_SOURCES})
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE Threads::Threads)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE spdlog)
|
|
|
|
add_test(NAME ${PROJECT_NAME} COMMAND ${PROJECT_NAME})
|
|
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs")
|