Add prefix for BUILD_TESTING cmake option

This is helpful when using spdlog as a dependency (git submodule) when a
master project is not interested in spdlog tests. Using
"BUILD_TESTING" name may create a confusion.
Extra: BUILD_EXAMPLE variable already have a prefix.
This commit is contained in:
Bartosz Taczała 2017-01-11 09:28:28 +01:00
parent 2ec188041f
commit 50c181ea4b
1 changed files with 2 additions and 2 deletions

View File

@ -17,6 +17,7 @@ endif()
add_library(spdlog INTERFACE)
option(SPDLOG_BUILD_EXAMPLES "Build examples" OFF)
option(SPDLOG_BUILD_TESTING "Build spdlog tests" ON)
target_include_directories(
spdlog
@ -27,12 +28,11 @@ target_include_directories(
set(HEADER_BASE "${CMAKE_CURRENT_SOURCE_DIR}/include")
include(CTest)
if(SPDLOG_BUILD_EXAMPLES)
add_subdirectory(example)
endif()
if(BUILD_TESTING)
if(SPDLOG_BUILD_TESTING)
add_subdirectory(tests)
endif()