2019-05-02 22:57:43 -07:00
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
2017-05-06 12:55:19 +03:00
|
|
|
|
2017-05-09 21:30:26 -07: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-13 16:07:26 -07:00
|
|
|
vcpkg_add_to_path("${PYTHON3_DIR}")
|
2017-05-09 21:30:26 -07:00
|
|
|
|
2017-05-06 12:55:19 +03:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO facebook/folly
|
2022-02-09 22:05:38 +01:00
|
|
|
REF v2022.01.31.00
|
|
|
|
SHA512 fef065c8a879e5b80eb521eaa09d2ac4eb22563e759834e60f665f07df5c2863c76217798680381bc51fad8c44f4b5d5abfb924a94c89635a41708abf6d70133
|
2021-10-22 14:49:13 +08:00
|
|
|
HEAD_REF main
|
2017-12-20 23:55:38 -08:00
|
|
|
PATCHES
|
2019-05-16 18:33:32 -07: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-07 21:31:06 +02:00
|
|
|
fix-windows-minmax.patch
|
2017-12-20 23:55:38 -08:00
|
|
|
)
|
|
|
|
|
2018-03-29 02:47:49 +03:00
|
|
|
file(COPY
|
2022-02-09 22:05:38 +01:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/FindLZ4.cmake"
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/FindSnappy.cmake"
|
|
|
|
DESTINATION "${SOURCE_PATH}/CMake/"
|
2018-03-29 02:47:49 +03:00
|
|
|
)
|
2022-02-09 22:05:38 +01:00
|
|
|
file(REMOVE "${SOURCE_PATH}/CMake/FindGFlags.cmake")
|
2018-03-29 02:47:49 +03:00
|
|
|
|
2017-05-06 12:55:19 +03:00
|
|
|
if(VCPKG_CRT_LINKAGE STREQUAL static)
|
|
|
|
set(MSVC_USE_STATIC_RUNTIME ON)
|
|
|
|
else()
|
|
|
|
set(MSVC_USE_STATIC_RUNTIME OFF)
|
|
|
|
endif()
|
|
|
|
|
2018-03-29 02:47:49 +03: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-09 22:05:38 +01:00
|
|
|
vcpkg_cmake_configure(
|
2017-05-06 12:55:19 +03:00
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
OPTIONS
|
|
|
|
-DMSVC_USE_STATIC_RUNTIME=${MSVC_USE_STATIC_RUNTIME}
|
2018-03-29 02:47:49 +03: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 06:18:55 -07:00
|
|
|
-DCMAKE_INSTALL_DIR=share/folly
|
2018-03-29 02:47:49 +03:00
|
|
|
${FEATURE_OPTIONS}
|
2017-05-06 12:55:19 +03:00
|
|
|
)
|
|
|
|
|
2022-02-09 22:05:38 +01:00
|
|
|
vcpkg_cmake_install(ADD_BIN_TO_PATH)
|
2017-05-06 12:55:19 +03:00
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
2022-02-09 22:05:38 +01:00
|
|
|
vcpkg_cmake_config_fixup()
|
2017-05-06 12:55:19 +03:00
|
|
|
|
2019-02-28 23: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-16 19: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-02 22:57:43 -07:00
|
|
|
string(REPLACE "-vc140-mt.lib" "-vc140-mt\$<\$<CONFIG:DEBUG>:-gd>.lib" _contents "${_contents}")
|
2019-02-28 23:53:42 -08:00
|
|
|
FILE(WRITE ${FOLLY_TARGETS_CMAKE} "${_contents}")
|
2022-02-09 22:05:38 +01:00
|
|
|
FILE(READ "${CURRENT_PACKAGES_DIR}/share/folly/folly-config.cmake" _contents)
|
|
|
|
FILE(WRITE "${CURRENT_PACKAGES_DIR}/share/folly/folly-config.cmake"
|
2019-05-16 18:33:32 -07: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-16 18:33:32 -07:00
|
|
|
${_contents}")
|
2019-02-28 23:53:42 -08:00
|
|
|
|
2022-02-09 22:05:38 +01:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
2017-05-06 12:55:19 +03:00
|
|
|
|
|
|
|
# Handle copyright
|
2022-02-09 22:05:38 +01:00
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
2021-10-28 00:19:28 +02:00
|
|
|
|
|
|
|
vcpkg_fixup_pkgconfig()
|