2019-05-03 13:57:43 +08:00
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
2017-05-06 17:55:19 +08:00
|
|
|
|
2017-05-10 12:30:26 +08:00
|
|
|
# Required to run build/generate_escape_tables.py et al.
|
|
|
|
vcpkg_find_acquire_program(PYTHON3)
|
|
|
|
get_filename_component(PYTHON3_DIR "${PYTHON3}" DIRECTORY)
|
2018-08-14 07:07:26 +08:00
|
|
|
vcpkg_add_to_path("${PYTHON3_DIR}")
|
2017-05-10 12:30:26 +08:00
|
|
|
|
2017-05-06 17:55:19 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO facebook/folly
|
2022-03-29 04:39:28 +08:00
|
|
|
REF v2022.03.21.00
|
|
|
|
SHA512 4e0fda55f007179883af30024fe1d389642159b1b4c915f7ef1a3c1003c8c52e2370f53ffa79d5fa75533d33becfb946d2bcbb2abdc62b9a297f977403d13dd7
|
2021-10-22 14:49:13 +08:00
|
|
|
HEAD_REF main
|
2017-12-21 15:55:38 +08:00
|
|
|
PATCHES
|
2019-05-17 09:33:32 +08:00
|
|
|
reorder-glog-gflags.patch
|
2019-06-21 05:13:53 +08:00
|
|
|
disable-non-underscore-posix-names.patch
|
2019-11-22 09:23:08 +08:00
|
|
|
boost-1.70.patch
|
[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
|
|
|
fix-windows-minmax.patch
|
2017-12-21 15:55:38 +08:00
|
|
|
)
|
|
|
|
|
2018-03-29 07:47:49 +08:00
|
|
|
file(COPY
|
2022-02-10 05:05:38 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/FindLZ4.cmake"
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/FindSnappy.cmake"
|
|
|
|
DESTINATION "${SOURCE_PATH}/CMake/"
|
2018-03-29 07:47:49 +08:00
|
|
|
)
|
2022-02-10 05:05:38 +08:00
|
|
|
file(REMOVE "${SOURCE_PATH}/CMake/FindGFlags.cmake")
|
2018-03-29 07:47:49 +08:00
|
|
|
|
2017-05-06 17:55:19 +08:00
|
|
|
if(VCPKG_CRT_LINKAGE STREQUAL static)
|
|
|
|
set(MSVC_USE_STATIC_RUNTIME ON)
|
|
|
|
else()
|
|
|
|
set(MSVC_USE_STATIC_RUNTIME OFF)
|
|
|
|
endif()
|
|
|
|
|
2018-03-29 07:47:49 +08:00
|
|
|
set(FEATURE_OPTIONS)
|
|
|
|
|
|
|
|
macro(feature FEATURENAME PACKAGENAME)
|
|
|
|
if("${FEATURENAME}" IN_LIST FEATURES)
|
|
|
|
list(APPEND FEATURE_OPTIONS -DCMAKE_DISABLE_FIND_PACKAGE_${PACKAGENAME}=OFF)
|
|
|
|
else()
|
|
|
|
list(APPEND FEATURE_OPTIONS -DCMAKE_DISABLE_FIND_PACKAGE_${PACKAGENAME}=ON)
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
feature(zlib ZLIB)
|
|
|
|
feature(bzip2 BZip2)
|
|
|
|
feature(lzma LibLZMA)
|
|
|
|
feature(lz4 LZ4)
|
|
|
|
feature(zstd Zstd)
|
|
|
|
feature(snappy Snappy)
|
|
|
|
|
2022-02-10 05:05:38 +08:00
|
|
|
vcpkg_cmake_configure(
|
2017-05-06 17:55:19 +08:00
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
OPTIONS
|
|
|
|
-DMSVC_USE_STATIC_RUNTIME=${MSVC_USE_STATIC_RUNTIME}
|
2018-03-29 07:47:49 +08:00
|
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_LibDwarf=ON
|
|
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_Libiberty=ON
|
|
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_LibAIO=ON
|
|
|
|
-DLIBAIO_FOUND=OFF
|
|
|
|
-DLIBURCU_FOUND=OFF
|
|
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_LibURCU=ON
|
2018-07-03 21:18:55 +08:00
|
|
|
-DCMAKE_INSTALL_DIR=share/folly
|
2018-03-29 07:47:49 +08:00
|
|
|
${FEATURE_OPTIONS}
|
2017-05-06 17:55:19 +08:00
|
|
|
)
|
|
|
|
|
2022-02-10 05:05:38 +08:00
|
|
|
vcpkg_cmake_install(ADD_BIN_TO_PATH)
|
2017-05-06 17:55:19 +08:00
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
2022-02-10 05:05:38 +08:00
|
|
|
vcpkg_cmake_config_fixup()
|
2017-05-06 17:55:19 +08:00
|
|
|
|
2019-03-01 15:53:42 +08:00
|
|
|
# Release folly-targets.cmake does not link to the right libraries in debug mode.
|
|
|
|
# We substitute with generator expressions so that the right libraries are linked for debug and release.
|
|
|
|
set(FOLLY_TARGETS_CMAKE "${CURRENT_PACKAGES_DIR}/share/folly/folly-targets.cmake")
|
|
|
|
FILE(READ ${FOLLY_TARGETS_CMAKE} _contents)
|
2022-02-17 11:56:04 +08:00
|
|
|
string(REPLACE "\${VCPKG_IMPORT_PREFIX}/lib/zlib.lib" "ZLIB::ZLIB" _contents "${_contents}")
|
|
|
|
STRING(REPLACE "\${VCPKG_IMPORT_PREFIX}/lib/" "\${VCPKG_IMPORT_PREFIX}/\$<\$<CONFIG:DEBUG>:debug/>lib/" _contents "${_contents}")
|
|
|
|
STRING(REPLACE "\${VCPKG_IMPORT_PREFIX}/debug/lib/" "\${VCPKG_IMPORT_PREFIX}/\$<\$<CONFIG:DEBUG>:debug/>lib/" _contents "${_contents}")
|
2019-05-03 13:57:43 +08:00
|
|
|
string(REPLACE "-vc140-mt.lib" "-vc140-mt\$<\$<CONFIG:DEBUG>:-gd>.lib" _contents "${_contents}")
|
2019-03-01 15:53:42 +08:00
|
|
|
FILE(WRITE ${FOLLY_TARGETS_CMAKE} "${_contents}")
|
2022-02-10 05:05:38 +08:00
|
|
|
FILE(READ "${CURRENT_PACKAGES_DIR}/share/folly/folly-config.cmake" _contents)
|
|
|
|
FILE(WRITE "${CURRENT_PACKAGES_DIR}/share/folly/folly-config.cmake"
|
2019-05-17 09:33:32 +08:00
|
|
|
"include(CMakeFindDependencyMacro)
|
|
|
|
find_dependency(Threads)
|
|
|
|
find_dependency(glog CONFIG)
|
2020-03-10 08:19:31 +08:00
|
|
|
find_dependency(gflags CONFIG REQUIRED)
|
2020-09-04 02:24:32 +08:00
|
|
|
find_dependency(ZLIB)
|
2019-05-17 09:33:32 +08:00
|
|
|
${_contents}")
|
2019-03-01 15:53:42 +08:00
|
|
|
|
2022-02-10 05:05:38 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
2017-05-06 17:55:19 +08:00
|
|
|
|
|
|
|
# Handle copyright
|
2022-02-10 05:05:38 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
2021-10-28 06:19:28 +08:00
|
|
|
|
|
|
|
vcpkg_fixup_pkgconfig()
|