Merge pull request #513 from Lectem/patch-1
SPDLOG_BUILD_TESTING now depends on BUILD_TESTING
This commit is contained in:
commit
c4d93ae0b5
@ -6,6 +6,7 @@
|
|||||||
cmake_minimum_required(VERSION 3.1)
|
cmake_minimum_required(VERSION 3.1)
|
||||||
project(spdlog VERSION 1.0.0)
|
project(spdlog VERSION 1.0.0)
|
||||||
include(CTest)
|
include(CTest)
|
||||||
|
include(CMakeDependentOption)
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 11)
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
@ -17,7 +18,10 @@ endif()
|
|||||||
add_library(spdlog INTERFACE)
|
add_library(spdlog INTERFACE)
|
||||||
|
|
||||||
option(SPDLOG_BUILD_EXAMPLES "Build examples" OFF)
|
option(SPDLOG_BUILD_EXAMPLES "Build examples" OFF)
|
||||||
option(SPDLOG_BUILD_TESTING "Build spdlog tests" ON)
|
cmake_dependent_option(SPDLOG_BUILD_TESTING
|
||||||
|
"Build spdlog tests" ON
|
||||||
|
"BUILD_TESTING" OFF
|
||||||
|
)
|
||||||
|
|
||||||
target_include_directories(
|
target_include_directories(
|
||||||
spdlog
|
spdlog
|
||||||
|
Loading…
Reference in New Issue
Block a user