diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2017-06-19 16:37:15 +0200 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2017-06-23 16:21:03 +0200 |
commit | b70df57c498a5757693266612bc51e45f2713ab3 (patch) | |
tree | c257686249dbd3c65b656e4a608ba7cd5489453c /templates/CMakeLists.txt.template | |
parent | 74c74fb04e98fa3641a0eaddddb5526a921f3520 (diff) |
build protobuf without zlib
Diffstat (limited to 'templates/CMakeLists.txt.template')
-rw-r--r-- | templates/CMakeLists.txt.template | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/CMakeLists.txt.template b/templates/CMakeLists.txt.template index 91bed9a6db..d279d02553 100644 --- a/templates/CMakeLists.txt.template +++ b/templates/CMakeLists.txt.template @@ -207,6 +207,11 @@ if(NOT protobuf_BUILD_TESTS) set(protobuf_BUILD_TESTS OFF CACHE BOOL "Build protobuf tests") endif() + # Disable building protobuf with zlib. Building protobuf with zlib breaks + # the build if zlib is not installed on the system. + if(NOT protobuf_WITH_ZLIB) + set(protobuf_WITH_ZLIB OFF CACHE BOOL "Build protobuf with zlib.") + endif() if(NOT PROTOBUF_ROOT_DIR) set(PROTOBUF_ROOT_DIR <%text>${CMAKE_CURRENT_SOURCE_DIR}</%text>/third_party/protobuf) endif() |