7e32ccbd8f
Added: * Release/Debug job for gcc 7 and clang 3.5 * Debug asan gcc 7 job * Debug tsan gcc 7 job * Disabled extensions * Added a spdlog::spdlog alias for tests Removed: * Valgrind workaround, the current version is 3.10.1 * install_libcxx * Makefiles Fixed: * examples build * multisink build Workarounds: * gcc7 with tsan and asan needs gold linker, otherwise build fails becase of unrecognized option '--push-state'
25 lines
607 B
CMake
25 lines
607 B
CMake
project(spdlog-utests CXX)
|
|
enable_testing()
|
|
find_package(Threads REQUIRED)
|
|
|
|
set(SPDLOG_UTESTS_SOURCES
|
|
errors.cpp
|
|
file_helper.cpp
|
|
file_log.cpp
|
|
test_misc.cpp
|
|
test_pattern_formatter.cpp
|
|
test_async.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::spdlog)
|
|
|
|
add_test(NAME ${PROJECT_NAME} COMMAND ${PROJECT_NAME})
|
|
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs")
|