mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-22 23:01:24 +08:00
3fadafface
* [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
97 lines
3.0 KiB
CMake
97 lines
3.0 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 75475f090875e737ad6909a6057c59577f0c79b1
|
|
SHA512 db9ff82dee38cb0f4ba10874d10bf6cb20c8a4d49e7dd24bcd9f71388c54c782ee12fda6f1bfedd79ad988b0275d3f96df4686217465acfafcfb5e4c30093a5b
|
|
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
|
|
)
|
|
|
|
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=bin
|
|
-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(CONFIG_PATH "share/grpc")
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/grpc RENAME copyright)
|
|
|
|
# Install tools
|
|
file(GLOB TOOLS "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/*.exe")
|
|
if(TOOLS)
|
|
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/tools/grpc)
|
|
file(COPY ${TOOLS} DESTINATION ${CURRENT_PACKAGES_DIR}/tools/grpc)
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/grpc)
|
|
endif()
|
|
|
|
file(GLOB EXES "${CURRENT_PACKAGES_DIR}/bin/*.exe" "${CURRENT_PACKAGES_DIR}/debug/bin/*.exe")
|
|
if(EXES)
|
|
file(REMOVE ${EXES})
|
|
endif()
|
|
|
|
# Ignore the C# extension DLL in bin/
|
|
SET(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
|
|
vcpkg_copy_pdbs()
|
|
## |