vcpkg/ports/wangle/portfile.cmake
c8ef 4c89942586
[folly related] update to 06.03 (#39108)
- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [x] SHA512s are updated for each updated download.
- [x] The "supports" clause reflects platforms that may be fixed by this
new version.
- [x] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.
- [x] Any patches that are no longer applied are deleted from the port's
directory.
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
2024-06-06 00:14:15 -07:00

53 lines
2.0 KiB
CMake

vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO facebook/wangle
REF "v${VERSION}"
SHA512 aff134dc84a27abbfcfb1187b4d74db4e8522934a516c4fee78cf24cdd7e837c5c3aa2c9dc32129175e8b7e461bcd4e2c2653e06ef333a11e22a7d379e1367a2
HEAD_REF main
PATCHES
fix-config-cmake.patch
fix_dependency.patch
)
file(REMOVE
"${SOURCE_PATH}/wangle/cmake/FindDoubleConversion.cmake"
"${SOURCE_PATH}/build/fbcode_builder/CMake/FindGflags.cmake"
"${SOURCE_PATH}/build/fbcode_builder/CMake/FindGlog.cmake"
"${SOURCE_PATH}/build/fbcode_builder/CMake/FindGMock.cmake"
"${SOURCE_PATH}/build/fbcode_builder/CMake/FindLibEvent.cmake"
"${SOURCE_PATH}/build/fbcode_builder/CMake/FindSodium.cmake"
"${SOURCE_PATH}/build/fbcode_builder/CMake/FindZstd.cmake"
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}/wangle"
OPTIONS
-DBUILD_TESTS=OFF
-DBUILD_EXAMPLES=OFF
-DINCLUDE_INSTALL_DIR:STRING=include
)
vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/wangle)
file(READ "${CURRENT_PACKAGES_DIR}/share/wangle/wangle-targets.cmake" _contents)
STRING(REPLACE "\${_IMPORT_PREFIX}/lib/" "\${_IMPORT_PREFIX}/\$<\$<CONFIG:DEBUG>:debug/>lib/" _contents "${_contents}")
STRING(REPLACE "\${_IMPORT_PREFIX}/debug/lib/" "\${_IMPORT_PREFIX}/\$<\$<CONFIG:DEBUG>:debug/>lib/" _contents "${_contents}")
file(WRITE "${CURRENT_PACKAGES_DIR}/share/wangle/wangle-targets.cmake" "${_contents}")
vcpkg_copy_pdbs()
file(REMOVE_RECURSE
"${CURRENT_PACKAGES_DIR}/debug/include"
"${CURRENT_PACKAGES_DIR}/include/wangle/util/test"
"${CURRENT_PACKAGES_DIR}/include/wangle/ssl/test/certs"
"${CURRENT_PACKAGES_DIR}/include/wangle/service/test"
"${CURRENT_PACKAGES_DIR}/include/wangle/deprecated/rx/test"
)
file(INSTALL "${CURRENT_PORT_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")