mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:39:00 +08:00
77c11ffd59
* Update folly * Update wangle * Update fizz * Version * Fix patch * Fix patch * version * Fix error in rsocket * Fix patch * Fix patch * version vor rsocket * Update fbthrift * fbthrift version * Fix fbthrift * Fix fbthreft version * fbthrift: fix empty dir * fbthrift: update version * Update mvfst * Update proxygen * Update hashes * update version * remove unused patchfiles * Fix deprecated cmake functions * format and version * version * rsocket: fix version * rsocket: update port version * fix version * fix version * update version * restore version * update port version * update version * fix port version * version * remove v from version string * version * Add quotes * version
40 lines
1.3 KiB
CMake
40 lines
1.3 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO facebook/proxygen
|
|
REF v2022.01.31.00
|
|
SHA512 f340466fb52e01bb71289f7cf1e8aee2ef8a0d5db21998ea85aaf07b128144de05747ececcac65e99d1d452bddc0d0dc60ba17087311c8337e31fbdda6f4ce3a
|
|
HEAD_REF master
|
|
PATCHES
|
|
remove-register.patch
|
|
)
|
|
|
|
vcpkg_find_acquire_program(PYTHON3)
|
|
get_filename_component(PYTHON3_PATH "${PYTHON3}" DIRECTORY)
|
|
vcpkg_add_to_path(${PYTHON3_PATH})
|
|
|
|
if (VCPKG_TARGET_IS_WINDOWS)
|
|
vcpkg_find_acquire_program(GPERF)
|
|
get_filename_component(GPERF_PATH ${GPERF} DIRECTORY)
|
|
vcpkg_add_to_path(${GPERF_PATH})
|
|
else()
|
|
# gperf only have windows package in vcpkg now.
|
|
if (NOT EXISTS /usr/bin/gperf)
|
|
message(FATAL_ERROR "proxygen requires gperf, these can be installed on Ubuntu systems via apt-get install gperf.")
|
|
endif()
|
|
endif()
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_copy_tools(TOOL_NAMES proxygen_curl proxygen_echo proxygen_proxy proxygen_push proxygen_static AUTO_CLEAN)
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/proxygen)
|
|
vcpkg_copy_pdbs()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|