aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libunifex/portfile.cmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/libunifex/portfile.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/libunifex/portfile.cmake')
-rw-r--r--vcpkg/ports/libunifex/portfile.cmake44
1 files changed, 44 insertions, 0 deletions
diff --git a/vcpkg/ports/libunifex/portfile.cmake b/vcpkg/ports/libunifex/portfile.cmake
new file mode 100644
index 0000000..fbc11b0
--- /dev/null
+++ b/vcpkg/ports/libunifex/portfile.cmake
@@ -0,0 +1,44 @@
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO facebookexperimental/libunifex
+ REF "v${VERSION}"
+ SHA512 9625a248b9ed43f7ac8e3da054020e7c5c71d3da253cfa587ee62eb8a1d4cfee794758b7d28896e4038c1924b204c92be7230c20cf525684e2c304ceaa4a6321
+ HEAD_REF main
+ PATCHES
+ fix-compile-error.patch
+ fix-linux-timespec.patch
+)
+
+vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ FEATURES
+ coroutines CXX_COROUTINES_HAVE_COROUTINES
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS
+ ${FEATURE_OPTIONS}
+ -DCMAKE_CXX_STANDARD:STRING=20
+ -DBUILD_TESTING=OFF
+ -DUNIFEX_BUILD_EXAMPLES=OFF
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(PACKAGE_NAME unifex CONFIG_PATH lib/cmake/unifex)
+vcpkg_copy_pdbs()
+vcpkg_fixup_pkgconfig()
+
+file(INSTALL "${SOURCE_PATH}/LICENSE.txt"
+ DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include"
+ "${CURRENT_PACKAGES_DIR}/debug/share"
+ "${CURRENT_PACKAGES_DIR}/include/unifex/config.hpp.in"
+)
+if(VCPKG_TARGET_IS_WINDOWS)
+ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include/unifex/linux")
+elseif(VCPKG_TARGET_IS_LINUX)
+ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include/unifex/win32")
+endif()