2016-09-23 23:10:50 +08:00
|
|
|
include(vcpkg_common_functions)
|
|
|
|
|
2019-05-21 01:24:51 +08:00
|
|
|
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore" OR NOT VCPKG_CMAKE_SYSTEM_NAME)
|
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
endif()
|
2018-08-14 06:27:45 +08:00
|
|
|
|
|
|
|
# This snippet is a workaround for users who are upgrading from an extremely old version of this
|
|
|
|
# port, which cloned directly into `src\`
|
2017-02-17 17:18:32 +08:00
|
|
|
if(EXISTS "${CURRENT_BUILDTREES_DIR}/src/.git")
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_BUILDTREES_DIR}/src)
|
2016-09-23 23:10:50 +08:00
|
|
|
endif()
|
|
|
|
|
2017-05-07 14:02:25 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO grpc/grpc
|
[many ports] Updates 2019.05.24 (#6618)
* [many ports] Updates 2019.05.24
* Update SHA512 and resolve conflict for ebml and matroska
* [avro-c]Fix build error caused by jansson upgrades.
* [xxhash]Update to the next version to fix build error.(xxhash issue:#179)
* Fix failures and undo asio
* [libyaml, grpc, miniz, paho-mqtt, sqlitecpp] Update patches
* Update REF
* Undo nvtt flann itk libtins aws-sdk-cpp openvdb vlpp xmsh changes
* [flann, fastcdr] Fix old patches and build error.
* [flann, fastcdr] Fix build error.
* Fix ensmallen uvatlas cppcms libplist failures and undo aws-c-common libopusenc arb taglib changes
* [dcmtk, draco, flatbuffers, forge, ftgl, mosquitto,nmslib, ogre] Update old patches and fix build error.
* fix libusbmuxd failures and undo xxhash paho-mqtt mongo-c-driver flann libffi
* fix libimobiledevice and undo qhull harfbuzz lcm libbson draco flatbuffers
* undo libmupdf forge kd-soap qca
* [mosquitto] Fix installation of import libs
* [arb][asio][aws-c-common][collada-dom][concurrentqueue][cryptopp][ebml] Revert trivial/undesired changes
* [fastcdr] Minimize patch
* [many ports] Revert trivial changes
* [libyaml] Switch to non-dist tag
* [sqlite-modern-cpp] Track master due to infrequent release
* [nano-signal-slot] Revert downgrade
* [openvpn3] Bump control version to account for portfile change
* [sqlite-modern-cpp] Fixup wrong hash
* [mosquitto] Commit missing patch
2019-06-11 08:01:54 +08:00
|
|
|
REF 75475f090875e737ad6909a6057c59577f0c79b1
|
|
|
|
SHA512 db9ff82dee38cb0f4ba10874d10bf6cb20c8a4d49e7dd24bcd9f71388c54c782ee12fda6f1bfedd79ad988b0275d3f96df4686217465acfafcfb5e4c30093a5b
|
2017-05-07 14:02:25 +08:00
|
|
|
HEAD_REF master
|
2019-04-19 17:27:19 +08:00
|
|
|
PATCHES
|
|
|
|
00001-fix-uwp.patch
|
|
|
|
00002-static-linking-in-linux.patch
|
2019-05-18 02:18:26 +08:00
|
|
|
00003-undef-base64-macro.patch
|
|
|
|
00004-link-gdi32-on-windows.patch
|
2017-02-17 17:18:32 +08:00
|
|
|
)
|
2016-09-23 23:10:50 +08:00
|
|
|
|
2019-05-18 02:18:26 +08:00
|
|
|
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
|
2018-04-26 21:23:44 +08:00
|
|
|
set(gRPC_BUILD_CODEGEN OFF)
|
|
|
|
else()
|
|
|
|
set(gRPC_BUILD_CODEGEN ON)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(VCPKG_CRT_LINKAGE STREQUAL "static")
|
2017-05-11 04:08:31 +08:00
|
|
|
set(gRPC_MSVC_STATIC_RUNTIME ON)
|
|
|
|
else()
|
|
|
|
set(gRPC_MSVC_STATIC_RUNTIME OFF)
|
|
|
|
endif()
|
|
|
|
|
2019-04-19 17:27:19 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
|
|
set(gRPC_STATIC_LINKING ON)
|
|
|
|
else()
|
|
|
|
set(gRPC_STATIC_LINKING OFF)
|
|
|
|
endif()
|
|
|
|
|
2018-05-18 11:15:15 +08:00
|
|
|
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
|
|
set(cares_CARES_PROVIDER OFF)
|
|
|
|
else()
|
|
|
|
set(cares_CARES_PROVIDER "package")
|
|
|
|
endif()
|
|
|
|
|
2016-09-23 23:10:50 +08:00
|
|
|
vcpkg_configure_cmake(
|
2017-02-17 17:18:32 +08:00
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2017-04-22 08:05:43 +08:00
|
|
|
PREFER_NINJA
|
2016-09-23 23:10:50 +08:00
|
|
|
OPTIONS
|
|
|
|
-DgRPC_INSTALL=ON
|
2017-05-11 04:08:31 +08:00
|
|
|
-DgRPC_BUILD_TESTS=OFF
|
2019-04-19 17:27:19 +08:00
|
|
|
-DgRPC_STATIC_LINKING=${gRPC_STATIC_LINKING}
|
2017-05-11 04:08:31 +08:00
|
|
|
-DgRPC_MSVC_STATIC_RUNTIME=${gRPC_MSVC_STATIC_RUNTIME}
|
2016-09-23 23:10:50 +08:00
|
|
|
-DgRPC_ZLIB_PROVIDER=package
|
|
|
|
-DgRPC_SSL_PROVIDER=package
|
|
|
|
-DgRPC_PROTOBUF_PROVIDER=package
|
2018-04-26 21:23:44 +08:00
|
|
|
-DgRPC_PROTOBUF_PACKAGE_TYPE=CONFIG
|
2018-05-18 11:15:15 +08:00
|
|
|
-DgRPC_CARES_PROVIDER=${cares_CARES_PROVIDER}
|
2017-05-11 04:08:31 +08:00
|
|
|
-DgRPC_GFLAGS_PROVIDER=none
|
|
|
|
-DgRPC_BENCHMARK_PROVIDER=none
|
2017-05-20 06:24:01 +08:00
|
|
|
-DgRPC_INSTALL_CSHARP_EXT=OFF
|
2017-10-19 23:53:59 +08:00
|
|
|
-DgRPC_INSTALL_BINDIR:STRING=bin
|
|
|
|
-DgRPC_INSTALL_LIBDIR:STRING=lib
|
|
|
|
-DgRPC_INSTALL_INCLUDEDIR:STRING=include
|
|
|
|
-DgRPC_INSTALL_CMAKEDIR:STRING=share/grpc
|
2018-04-26 21:23:44 +08:00
|
|
|
-DgRPC_BUILD_CODEGEN=${gRPC_BUILD_CODEGEN}
|
2016-09-23 23:10:50 +08:00
|
|
|
)
|
|
|
|
|
2018-04-26 21:23:44 +08:00
|
|
|
vcpkg_install_cmake(ADD_BIN_TO_PATH)
|
2017-05-11 04:08:31 +08:00
|
|
|
|
2017-10-19 23:53:59 +08:00
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH "share/grpc")
|
2016-09-23 23:10:50 +08:00
|
|
|
|
2017-02-17 17:18:32 +08:00
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/grpc RENAME copyright)
|
2016-09-23 23:10:50 +08:00
|
|
|
|
2018-04-26 21:23:44 +08:00
|
|
|
# Install tools
|
2017-04-22 08:05:43 +08:00
|
|
|
file(GLOB TOOLS "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/*.exe")
|
|
|
|
if(TOOLS)
|
2017-05-07 14:02:25 +08:00
|
|
|
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/tools/grpc)
|
|
|
|
file(COPY ${TOOLS} DESTINATION ${CURRENT_PACKAGES_DIR}/tools/grpc)
|
2017-07-08 08:19:19 +08:00
|
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/grpc)
|
2017-04-22 08:05:43 +08:00
|
|
|
endif()
|
2017-02-08 04:30:19 +08:00
|
|
|
|
2018-04-26 21:23:44 +08:00
|
|
|
file(GLOB EXES "${CURRENT_PACKAGES_DIR}/bin/*.exe" "${CURRENT_PACKAGES_DIR}/debug/bin/*.exe")
|
|
|
|
if(EXES)
|
|
|
|
file(REMOVE ${EXES})
|
2018-04-19 07:32:10 +08:00
|
|
|
endif()
|
2018-04-26 21:23:44 +08:00
|
|
|
|
|
|
|
# Ignore the C# extension DLL in bin/
|
|
|
|
SET(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
2017-05-07 14:02:25 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
2016-09-23 23:10:50 +08:00
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
2018-12-20 06:57:09 +08:00
|
|
|
##
|