Added cmake option SPDLOG_BUILD_ALL

This commit is contained in:
gabime
2020-04-12 02:43:42 +03:00
parent d0fc8a572c
commit 854abdf5e6
2 changed files with 7 additions and 5 deletions

View File

@@ -60,11 +60,11 @@ function(spdlog_prepare_test test_target spdlog_lib)
endfunction()
# The compiled library tests
if(SPDLOG_BUILD_TESTS)
if(SPDLOG_BUILD_TESTS OR SPDLOG_BUILD_ALL)
spdlog_prepare_test(spdlog-utests spdlog::spdlog)
endif()
# The header-only library version tests
if(SPDLOG_BUILD_TESTS_HO)
if(SPDLOG_BUILD_TESTS_HO OR SPDLOG_BUILD_ALL)
spdlog_prepare_test(spdlog-utests-ho spdlog::spdlog_header_only)
endif()