diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/libtracepoint-control/portfile.cmake | |
Diffstat (limited to 'vcpkg/ports/libtracepoint-control/portfile.cmake')
| -rw-r--r-- | vcpkg/ports/libtracepoint-control/portfile.cmake | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/vcpkg/ports/libtracepoint-control/portfile.cmake b/vcpkg/ports/libtracepoint-control/portfile.cmake new file mode 100644 index 0000000..3bf156d --- /dev/null +++ b/vcpkg/ports/libtracepoint-control/portfile.cmake @@ -0,0 +1,35 @@ +vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO "microsoft/LinuxTracepoints"
+ REF "v${VERSION}"
+ SHA512 baf27c967b2fa1fb8e8684951fd8e12e40fe9c23f5052a2d77c63eceab6ddfc112537422b97c37cfb0e479361fa8aedea6d8d7edfae91810f1ed696060fcb822
+ HEAD_REF main)
+
+vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ FEATURES
+ tools BUILD_TOOLS
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}/libtracepoint-control-cpp"
+ OPTIONS ${FEATURE_OPTIONS}
+ -DBUILD_SAMPLES=OFF
+)
+
+vcpkg_cmake_install()
+vcpkg_copy_pdbs()
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
+
+if (BUILD_TOOLS)
+ vcpkg_copy_tools(
+ TOOL_NAMES perf-collect
+ AUTO_CLEAN)
+endif()
+
+vcpkg_cmake_config_fixup(
+ PACKAGE_NAME tracepoint-control
+ CONFIG_PATH lib/cmake/tracepoint-control)
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|