mirror of
https://github.com/andreili/gentoo_overlay.git
synced 2025-08-23 19:34:08 +02:00
72 lines
2.7 KiB
Diff
72 lines
2.7 KiB
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index ac0d03c3a..ac8aee8a7 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -41,7 +41,7 @@ else (BUILD_SHARED_LIBS)
|
|
endif (BUILD_SHARED_LIBS)
|
|
option(protobuf_BUILD_SHARED_LIBS "Build Shared Libraries" ${protobuf_BUILD_SHARED_LIBS_DEFAULT})
|
|
include(CMakeDependentOption)
|
|
-cmake_dependent_option(protobuf_MSVC_STATIC_RUNTIME "Link static runtime libraries" ON
|
|
+cmake_dependent_option(protobuf_MSVC_STATIC_RUNTIME "Link static runtime libraries" OFF
|
|
"NOT protobuf_BUILD_SHARED_LIBS" OFF)
|
|
set(protobuf_WITH_ZLIB_DEFAULT ON)
|
|
option(protobuf_WITH_ZLIB "Build with zlib support" ${protobuf_WITH_ZLIB_DEFAULT})
|
|
@@ -158,24 +158,16 @@ endif()
|
|
|
|
set(_protobuf_FIND_ZLIB)
|
|
if (protobuf_WITH_ZLIB)
|
|
- find_package(ZLIB)
|
|
- if (ZLIB_FOUND)
|
|
- set(HAVE_ZLIB 1)
|
|
- # FindZLIB module define ZLIB_INCLUDE_DIRS variable
|
|
- # Set ZLIB_INCLUDE_DIRECTORIES for compatible
|
|
- set(ZLIB_INCLUDE_DIRECTORIES ${ZLIB_INCLUDE_DIRECTORIES} ${ZLIB_INCLUDE_DIRS})
|
|
- # Using imported target if exists
|
|
- if (TARGET ZLIB::ZLIB)
|
|
- set(ZLIB_LIBRARIES ZLIB::ZLIB)
|
|
- set(_protobuf_FIND_ZLIB "if(NOT ZLIB_FOUND)\n find_package(ZLIB)\nendif()")
|
|
- endif (TARGET ZLIB::ZLIB)
|
|
- else (ZLIB_FOUND)
|
|
- set(HAVE_ZLIB 0)
|
|
- # Explicitly set these to empty (override NOT_FOUND) so cmake doesn't
|
|
- # complain when we use them later.
|
|
- set(ZLIB_INCLUDE_DIRECTORIES)
|
|
- set(ZLIB_LIBRARIES)
|
|
- endif (ZLIB_FOUND)
|
|
+ if (NOT TARGET ZLIB::ZLIB)
|
|
+ find_package(ZLIB REQUIRED)
|
|
+ endif()
|
|
+ set(HAVE_ZLIB 1)
|
|
+ # FindZLIB module define ZLIB_INCLUDE_DIRS variable
|
|
+ # Set ZLIB_INCLUDE_DIRECTORIES for compatible
|
|
+ set(ZLIB_INCLUDE_DIRECTORIES ${ZLIB_INCLUDE_DIRECTORIES} ${ZLIB_INCLUDE_DIRS})
|
|
+ # Using imported target if exists
|
|
+ set(ZLIB_LIBRARIES ZLIB::ZLIB)
|
|
+ set(_protobuf_FIND_ZLIB "if(NOT ZLIB_FOUND AND NOT TARGET ZLIB::ZLIB)\n find_package(ZLIB REQUIRED)\nendif()")
|
|
endif (protobuf_WITH_ZLIB)
|
|
|
|
# We need to link with libatomic on systems that do not have builtin atomics, or
|
|
@@ -277,7 +269,6 @@ else (MSVC)
|
|
endif (MSVC)
|
|
|
|
include_directories(
|
|
- ${ZLIB_INCLUDE_DIRECTORIES}
|
|
${protobuf_BINARY_DIR}
|
|
${protobuf_SOURCE_DIR}/src)
|
|
|
|
diff --git a/cmake/libprotobuf.cmake b/cmake/libprotobuf.cmake
|
|
index 422754a1a..ea91898d5 100644
|
|
--- a/cmake/libprotobuf.cmake
|
|
+++ b/cmake/libprotobuf.cmake
|
|
@@ -26,7 +26,9 @@ endif()
|
|
if(${CMAKE_SYSTEM_NAME} STREQUAL "Android")
|
|
target_link_libraries(libprotobuf PRIVATE log)
|
|
endif()
|
|
-target_include_directories(libprotobuf PUBLIC ${protobuf_SOURCE_DIR}/src)
|
|
+target_include_directories(libprotobuf PUBLIC
|
|
+ ${protobuf_SOURCE_DIR}/src
|
|
+ ${protobuf_SOURCE_DIR})
|
|
target_link_libraries(libprotobuf PUBLIC ${protobuf_ABSL_USED_TARGETS})
|
|
protobuf_configure_target(libprotobuf)
|
|
if(protobuf_BUILD_SHARED_LIBS)
|