Skip to content

Commit

Permalink
Avoid intermediate proto-object library
Browse files Browse the repository at this point in the history
The use of proto-object breaks building shared libs and it doesn't make
sense to install it. Instead of TARGET, use generate_protobuf with OUT_VAR.
  • Loading branch information
Vogtinator authored and sergiomb2 committed Feb 25, 2024
1 parent 5393f1c commit a134090
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -250,13 +250,10 @@ if (${Protobuf_VERSION} VERSION_LESS "3.21.0.0")
DEPENDS ${PROTO_FILES}
)
else ()
set (PROTOBUF_OUTPUT "")
add_library (proto-objects OBJECT ${PROTO_FILES})
target_link_libraries (proto-objects PUBLIC protobuf::libprotobuf)
set (PROTO_BINARY_DIR "${CMAKE_CURRENT_SOURCE_DIR}/src")
target_include_directories (proto-objects PUBLIC "$<BUILD_INTERFACE:${PROTO_BINARY_DIR}>")
protobuf_generate (
TARGET proto-objects
PROTOS ${PROTO_FILES}
OUT_VAR PROTOBUF_OUTPUT
IMPORT_DIRS "${RESOURCES_DIR}"
PROTOC_OUT_DIR "${PROTO_BINARY_DIR}/phonenumbers"
)
Expand Down Expand Up @@ -303,9 +300,7 @@ set (
"src/phonenumbers/utf/unilib.cc"
)

if (${Protobuf_VERSION} VERSION_LESS "3.21.0.0")
list (APPEND SOURCES ${PROTOBUF_OUTPUT})
endif ()
list (APPEND SOURCES ${PROTOBUF_OUTPUT})

if (BUILD_GEOCODER)
set (
Expand Down Expand Up @@ -474,10 +469,6 @@ if (APPLE)
list (APPEND LIBRARY_DEPS ${COREFOUNDATION_LIB} ${FOUNDATION_LIB})
endif ()

if (${Protobuf_VERSION} VERSION_GREATER_EQUAL "3.21.0.0")
list (APPEND LIBRARY_DEPS proto-objects)
endif ()

#----------------------------------------------------------------
# Build libraries
#----------------------------------------------------------------
Expand Down Expand Up @@ -629,11 +620,7 @@ endif()
# Install built libraries
#----------------------------------------------------------------

if (${Protobuf_VERSION} VERSION_GREATER_EQUAL "3.21.0.0")
set (BUILT_LIBS proto-objects)
else ()
set (BUILT_LIBS)
endif ()
set (BUILT_LIBS)
set(targets_export_name "${PROJECT_NAME}-targets")

if (BUILD_STATIC_LIB)
Expand Down

0 comments on commit a134090

Please sign in to comment.