mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 06:09:08 +08:00
eaba9afccf
Tested locally (on x64-linux) with: ``` for feature in <new_features>; do ./vcpkg remove google-cloud-cpp; ./vcpkg install "google-cloud-cpp[core,${feature}]" || break; done ``` and ``` ./vcpkg remove google-cloud-cpp && ./vcpkg install 'google-cloud-cpp[*]' ``` - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [x] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file.
87 lines
3.3 KiB
CMake
87 lines
3.3 KiB
CMake
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO googleapis/google-cloud-cpp
|
|
REF "v${VERSION}"
|
|
SHA512 f0196fadab18164a1b1313717329063167c003279d0898ecedd18ca562c4344a4a5be302bd951fa5c95582078fe5e88a1a8debbc66db8c8dfafedfdf7a019522
|
|
HEAD_REF main
|
|
PATCHES
|
|
support_absl_cxx17.patch
|
|
)
|
|
|
|
if ("grpc-common" IN_LIST FEATURES)
|
|
vcpkg_add_to_path(PREPEND "${CURRENT_HOST_INSTALLED_DIR}/tools/grpc")
|
|
endif ()
|
|
|
|
set(GOOGLE_CLOUD_CPP_ENABLE "${FEATURES}")
|
|
list(REMOVE_ITEM GOOGLE_CLOUD_CPP_ENABLE "core")
|
|
# This feature does not exist, but allows us to simplify the vcpkg.json
|
|
# file.
|
|
list(REMOVE_ITEM GOOGLE_CLOUD_CPP_ENABLE "grpc-common")
|
|
list(REMOVE_ITEM GOOGLE_CLOUD_CPP_ENABLE "rest-common")
|
|
list(REMOVE_ITEM GOOGLE_CLOUD_CPP_ENABLE "googleapis")
|
|
# google-cloud-cpp uses dialogflow_cx and dialogflow_es. Underscores
|
|
# are invalid in `vcpkg` features, we use dashes (`-`) as a separator
|
|
# for the `vcpkg` feature name, and convert it here to something that
|
|
# `google-cloud-cpp` would like.
|
|
if ("dialogflow-cx" IN_LIST FEATURES)
|
|
list(REMOVE_ITEM GOOGLE_CLOUD_CPP_ENABLE "dialogflow-cx")
|
|
list(APPEND GOOGLE_CLOUD_CPP_ENABLE "dialogflow_cx")
|
|
endif ()
|
|
if ("dialogflow-es" IN_LIST FEATURES)
|
|
list(REMOVE_ITEM GOOGLE_CLOUD_CPP_ENABLE "dialogflow-es")
|
|
list(APPEND GOOGLE_CLOUD_CPP_ENABLE "dialogflow_es")
|
|
endif ()
|
|
if ("experimental-storage-grpc" IN_LIST FEATURES)
|
|
list(REMOVE_ITEM GOOGLE_CLOUD_CPP_ENABLE "experimental-storage-grpc")
|
|
list(APPEND GOOGLE_CLOUD_CPP_ENABLE "experimental-storage_grpc")
|
|
endif ()
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
DISABLE_PARALLEL_CONFIGURE
|
|
OPTIONS
|
|
"-DGOOGLE_CLOUD_CPP_ENABLE=${GOOGLE_CLOUD_CPP_ENABLE}"
|
|
-DGOOGLE_CLOUD_CPP_ENABLE_MACOS_OPENSSL_CHECK=OFF
|
|
-DGOOGLE_CLOUD_CPP_ENABLE_WERROR=OFF
|
|
-DGOOGLE_CLOUD_CPP_ENABLE_CCACHE=OFF
|
|
-DGOOGLE_CLOUD_CPP_ENABLE_EXAMPLES=OFF
|
|
-DBUILD_TESTING=OFF
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
function (google_cloud_cpp_cmake_config_fixup library)
|
|
string(REPLACE "experimental-" "" library "${library}")
|
|
string(REPLACE "-" "_" library "${library}")
|
|
set(config_path "lib/cmake/google_cloud_cpp_${library}")
|
|
# If the library exists and is installed, tell vcpkg about it.
|
|
if(NOT IS_DIRECTORY "${CURRENT_PACKAGES_DIR}/${config_path}")
|
|
return()
|
|
endif()
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME "google_cloud_cpp_${library}"
|
|
CONFIG_PATH "${config_path}"
|
|
DO_NOT_DELETE_PARENT_CONFIG_PATH)
|
|
endfunction ()
|
|
|
|
foreach(feature IN LISTS GOOGLE_CLOUD_CPP_ENABLE)
|
|
google_cloud_cpp_cmake_config_fixup(${feature})
|
|
google_cloud_cpp_cmake_config_fixup(${feature}_mocks)
|
|
endforeach()
|
|
|
|
# These packages are automatically installed depending on what features are
|
|
# enabled.
|
|
foreach(feature common compute_protos googleapis grpc_utils iam_v2 logging_type rest_internal rest_protobuf_internal)
|
|
google_cloud_cpp_cmake_config_fixup(${feature})
|
|
endforeach()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib/cmake"
|
|
"${CURRENT_PACKAGES_DIR}/debug/lib/cmake"
|
|
"${CURRENT_PACKAGES_DIR}/debug/share")
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
|
|
|
vcpkg_copy_pdbs()
|