mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 18:29:13 +08:00
4f0d70b992
- [ 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.
38 lines
1.1 KiB
CMake
38 lines
1.1 KiB
CMake
if(VCPKG_TARGET_IS_WINDOWS)
|
|
set(VCPKG_BUILD_TYPE release) # Windows port only includes headers.
|
|
endif()
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO "microsoft/LinuxTracepoints"
|
|
REF "v${VERSION}"
|
|
SHA512 d2126bb8e89c952630e22d66f0c9f2be7e46debd8f8dbc27f3a886af77cf4c1d9c3efcf3b7cae886feacfb9fe142355b26a3fb468c9b3582d65eb16f4dc6c288
|
|
HEAD_REF main)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}/libtracepoint"
|
|
OPTIONS
|
|
-DBUILD_SAMPLES=OFF
|
|
-DBUILD_TESTS=OFF)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_copy_pdbs()
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|
|
|
|
if(NOT VCPKG_TARGET_IS_WINDOWS)
|
|
vcpkg_cmake_config_fixup(
|
|
PACKAGE_NAME tracepoint
|
|
CONFIG_PATH lib/cmake/tracepoint
|
|
DO_NOT_DELETE_PARENT_CONFIG_PATH)
|
|
endif()
|
|
|
|
vcpkg_cmake_config_fixup(
|
|
PACKAGE_NAME tracepoint-headers
|
|
CONFIG_PATH lib/cmake/tracepoint-headers)
|
|
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
|
|
endif()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|