2018-10-12 13:03:05 +08:00
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO facebookincubator/fizz
|
2022-11-08 08:14:23 +08:00
|
|
|
REF 47948342be43ddb951e12a53770278be52d479e7 #v2022.10.31.00
|
|
|
|
SHA512 b91fbbe008bbd6ee5e865a585cd51f1a1b69360eba32231f0b585b836e5591ee4cc9ffe1d747a82267f21736056fc97932b35212016e614928c13de7c5a64f55
|
2018-10-12 13:03:05 +08:00
|
|
|
HEAD_REF master
|
2019-06-26 07:11:45 +08:00
|
|
|
PATCHES
|
2022-02-01 03:27:37 +08:00
|
|
|
0001-fix-libsodium.patch
|
2022-02-17 11:56:04 +08:00
|
|
|
0002-fix-libevent.patch
|
2018-10-12 13:03:05 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# Prefer installed config files
|
|
|
|
file(REMOVE
|
2022-11-08 08:14:23 +08:00
|
|
|
"${SOURCE_PATH}/fizz/cmake/FindGMock.cmake"
|
|
|
|
"${SOURCE_PATH}/fizz/cmake/FindGflags.cmake"
|
|
|
|
"${SOURCE_PATH}/fizz/cmake/FindGlog.cmake"
|
|
|
|
"${SOURCE_PATH}/fizz/cmake/FindLibevent.cmake"
|
2018-10-12 13:03:05 +08:00
|
|
|
)
|
|
|
|
|
2022-02-10 05:05:38 +08:00
|
|
|
vcpkg_cmake_configure(
|
2018-10-12 13:03:05 +08:00
|
|
|
SOURCE_PATH "${SOURCE_PATH}/fizz"
|
|
|
|
OPTIONS
|
|
|
|
-DBUILD_TESTS=OFF
|
2019-05-17 09:33:32 +08:00
|
|
|
-DBUILD_EXAMPLES=OFF
|
2018-10-12 13:03:05 +08:00
|
|
|
-DINCLUDE_INSTALL_DIR:STRING=include
|
|
|
|
)
|
|
|
|
|
2022-02-10 05:05:38 +08:00
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/fizz)
|
2018-10-12 13:03:05 +08:00
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
[boost] update to 1.76.0 (#17335)
* [boost] update generator script for boost 1.76
* [boost] update ports to 1.76.0 (run generator)
* [boost] fix windows build?
* [quantlib] update and fix mac build
* [symengine] update and fix build
* [avro-cpp] update to latest master and fix windows build
* [folly] update to 2021.05.31.00
* [fbthrift, fizz, wangle] update to v2021.05.31.00 and fix build
* [proxygen] update to version 2021.05.31.00
* [fizz, proxygen, fbthrift] fix sodium target
* [proxygen] also works on macOS
* [quantlib] use fix from upstream to fix mac build
* [symengine] minimize patch file and fix deprecation warning
* [folly,proxygen,wangle,fizz,fbthrift] update to 2021.06.14.00
* [fbthrift] remove unnecessary dependency rsocket
I couldn't find any information that this dependency exists. The term is used in the code, but not in the context of a dependency
* [fizz,fbthrift] fix zlib dependency
* [fbthrift] pass required flex executable to cmake configure
* add version files
* [boost] generate-ports.ps1: Apply code review
* [boost] changes from new version of generate-ports script
* update version files
* [boost] generate-ports.ps1: Apply code review
2021-07-08 03:31:06 +08:00
|
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/share/fizz/fizz-config.cmake" "lib/cmake/fizz" "share/fizz")
|
2018-10-12 13:03:05 +08:00
|
|
|
|
2022-02-10 05:05:38 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
2018-10-12 13:03:05 +08:00
|
|
|
|
2020-10-28 11:44:41 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include/fizz/tool/test" "${CURRENT_PACKAGES_DIR}/include/fizz/util/test")
|
|
|
|
|
2022-02-10 05:05:38 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|