mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 06:09:08 +08:00
4bd5a2954e
Bug-fix update. - [ 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.
22 lines
689 B
CMake
22 lines
689 B
CMake
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO "microsoft/LinuxTracepoints"
|
|
REF "v${VERSION}"
|
|
SHA512 b296ad3ee102d45cd8bccb2e3ed478f3d7adff8b3650251926189fd6efbca38728db61208af1627c08c16641b349e31e9366c6bc1965795063f39a167181f067
|
|
HEAD_REF main)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}/libtracepoint-control-cpp")
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_copy_pdbs()
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|
|
|
|
vcpkg_cmake_config_fixup(
|
|
PACKAGE_NAME tracepoint-control
|
|
CONFIG_PATH lib/cmake/tracepoint-control)
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|