Add cmake option protobuf_INSTALL for installation files (#7123)

pull/6307/head^2
JCooky 3 years ago committed by GitHub
parent a9cf69a0ed
commit 55645ca513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      cmake/CMakeLists.txt

@ -41,6 +41,7 @@ if (CMAKE_CXX_COMPILER_ID MATCHES Intel)
endif() endif()
# Options # Options
option(protobuf_INSTALL "Install protobuf binaries and files" ON)
if(WITH_PROTOC) if(WITH_PROTOC)
set(protobuf_PROTOC_EXE ${WITH_PROTOC} CACHE FILEPATH "Protocol Buffer Compiler executable" FORCE) set(protobuf_PROTOC_EXE ${WITH_PROTOC} CACHE FILEPATH "Protocol Buffer Compiler executable" FORCE)
endif() endif()
@ -305,7 +306,9 @@ if (protobuf_BUILD_CONFORMANCE)
include(conformance.cmake) include(conformance.cmake)
endif (protobuf_BUILD_CONFORMANCE) endif (protobuf_BUILD_CONFORMANCE)
include(install.cmake) if (protobuf_INSTALL)
include(install.cmake)
endif (protobuf_INSTALL)
if (protobuf_BUILD_EXAMPLES) if (protobuf_BUILD_EXAMPLES)
include(examples.cmake) include(examples.cmake)

Loading…
Cancel
Save