Rename CMake option BUILD_TESTING to protobuf_BUILD_TESTS
This commit is contained in:
parent
2fa0439b00
commit
673d32e093
1 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ cmake_policy(SET CMP0022 NEW)
|
|||
|
||||
# Options
|
||||
option(protobuf_VERBOSE "Enable for verbose output" OFF)
|
||||
option(BUILD_TESTING "Build tests" ON)
|
||||
option(protobuf_BUILD_TESTS "Build tests" ON)
|
||||
option(BUILD_SHARED_LIBS "Build Shared Libraries" OFF)
|
||||
option(protobuf_MSVC_STATIC_RUNTIME "Link static runtime libraries" ON)
|
||||
if (MSVC)
|
||||
|
@ -136,8 +136,8 @@ include(libprotobuf.cmake)
|
|||
include(libprotoc.cmake)
|
||||
include(protoc.cmake)
|
||||
|
||||
if (BUILD_TESTING)
|
||||
if (protobuf_BUILD_TESTS)
|
||||
include(tests.cmake)
|
||||
endif (BUILD_TESTING)
|
||||
endif (protobuf_BUILD_TESTS)
|
||||
|
||||
include(install.cmake)
|
||||
|
|
Loading…
Add table
Reference in a new issue