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
|
2019-10-04 00:41:24 +08:00
|
|
|
REF v1.23.1
|
|
|
|
SHA512 c39a07554645402c36cb79eddfda7165dc26ce5f7f09cae7ee6f7bedcc2aca8873117ea401d40ce2e3246e3e5888bcce12d4746cba7ed75068ff145046754981
|
2017-05-07 14:02:25 +08:00
|
|
|
HEAD_REF master
|
[many ports] improvements for linux/wsl (#6730)
* [many ports] improve compatibility with WSL and mixed case filesystems
* [treehopper] express dependency on libusb, which was not working on non-win32 platforms and is still broken there
* [libharu] add compatibility with non-win32 platforms
* [geogram] fix openblas on linux
[clapack] better integration with linux environment
[visit-struct] put cmake config file in the expected folder
[geogram] remove trailing underscore to enable compatibility with OpenBLAS
* [openblas] playing with underscore, without success
* [openblas/lapack] fix library integration
* [clapack] improve target handling in cmake module
* [openblas] promote self-generated config to default cmake module, otherwise internal ones thinks wrongly that openblas can also solve lapack libs
* [clapack,openblas] improve libraries integration
* [many ports] fix cmake unnecessary target paths, wrong config paths, empty default dependencies, unnecessary [core] tags
* [suitesparse] improve integration with new lapack/openblas mechanism
* [suitesparse] add no underscore postfix also for linux
* [ceres] fix integration with newer openblas/lapack configs
* [aws-c-event-stream] fix regression
* [systemc] fix regression
* [libwebp,geogram] trigger rebuild
* [libwebp,pthread4w] fix regressions
* [glbinding] fix cmake module installation
* [globjects] disentangle unnecessary dependency from qt5
* [jasper] remove broken and unnecessary patches
* [libwebp] fix regression
* [many ports] avoid using BUILD_SHARED_LIBS which is uninitialized in port files
* [clapack] correctly find dlls
* [clapack] use a generic blas as dependency
* [fizz,g2o] restore expected version
* fix mistake
* [many ports] remove WIN32, APPLE and UNIX (again, they keep creeping in) from ports since they are broken and usually break non-win32 ports
* [libressl,openssl] do not try to build one if the other is already installed
* [itk] update ref and patch to avoid regression
* [libressl,openssl] implement full strategy to fix CI
* [libwebp] disable components that are broken on macOS
* [ogre] enable macOS build
* [freeimage,jxrlib,ogre,openexr,protobuf] port patches from #5169
* [ogre] add missing install command
* [ffmpeg] enable wrapper for cmake module
* [ffmpeg] add avresample module finder
* [ffmpeg] improve module detection and exported symbols
* [ffmpeg] add variables to cache
* [thrift] remove unnecessary build option
* [allegro5] fix shared/static inversion
* [protobuf] cleanup
* [libressl] cleanup
* [moos-core] cleanup
* commented features must not be separated from other features, otherwise vcpkg complains
* [itk] fix regression
* [shogun,itk] fix regressions
* [ogre] fix regression
* [opusfile] add compatibility with non-win32
* [itk] fix regression
* [sndfile,libsndfile] remove duplicate, redirect sndfile to libsndfile
* add missing dependencies
* [ismrmrd] fix regression
* [ffmpeg] trigger rebuild
* [clapack,openblas,libogg] fix regressions on macOS
* [libtins] fix regression
* force rebuild windows regressions, unable to reproduce locally
* [mosquitto] enable non-win32 builds
* [json-dto] force rebuild, unable to reproduce regression locally
* [many ports] uniform naming and path length requests
* fix regression
* fix regression
* [ffmpeg] fixes for downstream projects
* clean up - thanks to reviewers
* trigger rebuild of regressions on macOS
* trigger rebuild of regressions on macOS - part2
* Add core back
* Use VCPKG_CONCURRENCY
* Add core back to suitesparse
* Add core back to curl
* Add core back to magnum
* Add core back to magnum
* Add core back to magnum
* Add core back to cgal
2019-06-21 10:11:54 +08:00
|
|
|
PATCHES
|
2019-04-19 17:27:19 +08:00
|
|
|
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
|
2019-08-25 04:43:57 +08:00
|
|
|
00005-fix-uwp-error.patch
|
2019-09-09 23:59:28 +08:00
|
|
|
00006-crypt32.patch
|
|
|
|
00007-disable_grpcpp_channelz.patch
|
2019-10-27 10:28:17 +08:00
|
|
|
00008-fix-duplicate-gettid.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
|
2019-06-25 14:21:30 +08:00
|
|
|
-DgRPC_INSTALL_BINDIR:STRING=tools/grpc
|
2017-10-19 23:53:59 +08:00
|
|
|
-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
|
|
|
|
[many ports] improvements for linux/wsl (#6730)
* [many ports] improve compatibility with WSL and mixed case filesystems
* [treehopper] express dependency on libusb, which was not working on non-win32 platforms and is still broken there
* [libharu] add compatibility with non-win32 platforms
* [geogram] fix openblas on linux
[clapack] better integration with linux environment
[visit-struct] put cmake config file in the expected folder
[geogram] remove trailing underscore to enable compatibility with OpenBLAS
* [openblas] playing with underscore, without success
* [openblas/lapack] fix library integration
* [clapack] improve target handling in cmake module
* [openblas] promote self-generated config to default cmake module, otherwise internal ones thinks wrongly that openblas can also solve lapack libs
* [clapack,openblas] improve libraries integration
* [many ports] fix cmake unnecessary target paths, wrong config paths, empty default dependencies, unnecessary [core] tags
* [suitesparse] improve integration with new lapack/openblas mechanism
* [suitesparse] add no underscore postfix also for linux
* [ceres] fix integration with newer openblas/lapack configs
* [aws-c-event-stream] fix regression
* [systemc] fix regression
* [libwebp,geogram] trigger rebuild
* [libwebp,pthread4w] fix regressions
* [glbinding] fix cmake module installation
* [globjects] disentangle unnecessary dependency from qt5
* [jasper] remove broken and unnecessary patches
* [libwebp] fix regression
* [many ports] avoid using BUILD_SHARED_LIBS which is uninitialized in port files
* [clapack] correctly find dlls
* [clapack] use a generic blas as dependency
* [fizz,g2o] restore expected version
* fix mistake
* [many ports] remove WIN32, APPLE and UNIX (again, they keep creeping in) from ports since they are broken and usually break non-win32 ports
* [libressl,openssl] do not try to build one if the other is already installed
* [itk] update ref and patch to avoid regression
* [libressl,openssl] implement full strategy to fix CI
* [libwebp] disable components that are broken on macOS
* [ogre] enable macOS build
* [freeimage,jxrlib,ogre,openexr,protobuf] port patches from #5169
* [ogre] add missing install command
* [ffmpeg] enable wrapper for cmake module
* [ffmpeg] add avresample module finder
* [ffmpeg] improve module detection and exported symbols
* [ffmpeg] add variables to cache
* [thrift] remove unnecessary build option
* [allegro5] fix shared/static inversion
* [protobuf] cleanup
* [libressl] cleanup
* [moos-core] cleanup
* commented features must not be separated from other features, otherwise vcpkg complains
* [itk] fix regression
* [shogun,itk] fix regressions
* [ogre] fix regression
* [opusfile] add compatibility with non-win32
* [itk] fix regression
* [sndfile,libsndfile] remove duplicate, redirect sndfile to libsndfile
* add missing dependencies
* [ismrmrd] fix regression
* [ffmpeg] trigger rebuild
* [clapack,openblas,libogg] fix regressions on macOS
* [libtins] fix regression
* force rebuild windows regressions, unable to reproduce locally
* [mosquitto] enable non-win32 builds
* [json-dto] force rebuild, unable to reproduce regression locally
* [many ports] uniform naming and path length requests
* fix regression
* fix regression
* [ffmpeg] fixes for downstream projects
* clean up - thanks to reviewers
* trigger rebuild of regressions on macOS
* trigger rebuild of regressions on macOS - part2
* Add core back
* Use VCPKG_CONCURRENCY
* Add core back to suitesparse
* Add core back to curl
* Add core back to magnum
* Add core back to magnum
* Add core back to magnum
* Add core back to cgal
2019-06-21 10:11:54 +08:00
|
|
|
vcpkg_fixup_cmake_targets()
|
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
|
|
|
|
2019-06-25 14:21:30 +08:00
|
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/grpc)
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/tools")
|
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()
|