mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 18:39:07 +08:00
1550b9e71b
* [many ports] Upgrades 2019.07.11 * Re-generate patches and fix build errors. * [manyport]Fix build errors. * Fix avro-c and console-bridge failures, revert curl and tesseract * fix botan failure * Fix build errors and undo some ports upgrades. * [aws-c-common,chipmunk,cxxopts,grpc]Fix build errors * Fix build errors. * [angle]Undo upgrade changes. * [directxtk]Fix UWP build error (#7233) * Revert leptonica since it cause tesseract failed * Revert jsonnet * [google-cloud-cpp] Disable parallel configure due to source directory writes * [many ports] Undo undesired changes * [bitsery] Fix indentation * [avro-c][aws-c-common][graphite2] Convert line endings to minimize PR diff * fix console-bridge and remove usockets unused patch * update ogre patch * [many ports] Revert unneeded changes w.r.t. master. Add missing write to console-bridge. * [console-bridge] Fix export macro * [avro-c] Revert upgrade; split to #7875 * [avro-c] Complete previous revert
88 lines
2.7 KiB
CMake
88 lines
2.7 KiB
CMake
include(vcpkg_common_functions)
|
|
|
|
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore" OR NOT VCPKG_CMAKE_SYSTEM_NAME)
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
endif()
|
|
|
|
# This snippet is a workaround for users who are upgrading from an extremely old version of this
|
|
# port, which cloned directly into `src\`
|
|
if(EXISTS "${CURRENT_BUILDTREES_DIR}/src/.git")
|
|
file(REMOVE_RECURSE ${CURRENT_BUILDTREES_DIR}/src)
|
|
endif()
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO grpc/grpc
|
|
REF 08fd59f039c7cf62614ab7741b3f34527af103c7
|
|
SHA512 a1200e0df981f69f9831425a5187dcc843d9eadee1663150cd3aa10d388ae0693ac6aa57760d7047ce1e6c55a15339d1db2f1b6e25f84c76ad97e0b48706e2c4
|
|
HEAD_REF master
|
|
PATCHES
|
|
00001-fix-uwp.patch
|
|
00002-static-linking-in-linux.patch
|
|
00003-undef-base64-macro.patch
|
|
00004-link-gdi32-on-windows.patch
|
|
00005-fix-uwp-error.patch
|
|
)
|
|
|
|
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
|
|
set(gRPC_BUILD_CODEGEN OFF)
|
|
else()
|
|
set(gRPC_BUILD_CODEGEN ON)
|
|
endif()
|
|
|
|
if(VCPKG_CRT_LINKAGE STREQUAL "static")
|
|
set(gRPC_MSVC_STATIC_RUNTIME ON)
|
|
else()
|
|
set(gRPC_MSVC_STATIC_RUNTIME OFF)
|
|
endif()
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
set(gRPC_STATIC_LINKING ON)
|
|
else()
|
|
set(gRPC_STATIC_LINKING OFF)
|
|
endif()
|
|
|
|
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
set(cares_CARES_PROVIDER OFF)
|
|
else()
|
|
set(cares_CARES_PROVIDER "package")
|
|
endif()
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DgRPC_INSTALL=ON
|
|
-DgRPC_BUILD_TESTS=OFF
|
|
-DgRPC_STATIC_LINKING=${gRPC_STATIC_LINKING}
|
|
-DgRPC_MSVC_STATIC_RUNTIME=${gRPC_MSVC_STATIC_RUNTIME}
|
|
-DgRPC_ZLIB_PROVIDER=package
|
|
-DgRPC_SSL_PROVIDER=package
|
|
-DgRPC_PROTOBUF_PROVIDER=package
|
|
-DgRPC_PROTOBUF_PACKAGE_TYPE=CONFIG
|
|
-DgRPC_CARES_PROVIDER=${cares_CARES_PROVIDER}
|
|
-DgRPC_GFLAGS_PROVIDER=none
|
|
-DgRPC_BENCHMARK_PROVIDER=none
|
|
-DgRPC_INSTALL_CSHARP_EXT=OFF
|
|
-DgRPC_INSTALL_BINDIR:STRING=tools/grpc
|
|
-DgRPC_INSTALL_LIBDIR:STRING=lib
|
|
-DgRPC_INSTALL_INCLUDEDIR:STRING=include
|
|
-DgRPC_INSTALL_CMAKEDIR:STRING=share/grpc
|
|
-DgRPC_BUILD_CODEGEN=${gRPC_BUILD_CODEGEN}
|
|
)
|
|
|
|
vcpkg_install_cmake(ADD_BIN_TO_PATH)
|
|
|
|
vcpkg_fixup_cmake_targets()
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/grpc RENAME copyright)
|
|
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/grpc)
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/tools")
|
|
|
|
# Ignore the C# extension DLL in bin/
|
|
SET(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
|
|
vcpkg_copy_pdbs()
|