mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 18:59:07 +08:00
e0c3408c77
* [tracy] Add Tracy `profiler` and `capture` tools * [tracy] Linux supports * [capstone] fix non-installed pkg-config * [tracy] supports for capstone (including pkgconfig support) * [tracy] Add license * [tracy] fix OSX * [tracy] tools cannot be built on x86 Windows * [tracy] do not build tools by default * [tracy] Fix case * [tracy] fix vcpkg copyright location convention * Apply suggestions from code review Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * Finish code for code review suggestions * Use `vcpkg_build_make` instead of `vcpkg_execute_build_process` * Apply suggestions from code review Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * Workaround Windows cl complaint about `nodiscard` * Use tools bundle rather than individual tools in features * [capstone] Upgrade port after capstone-engine/capstone#1870 merge Co-authored-by: MACHIZAUD Andréa <andrea.machizaud@adobe.com> Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "tracy",
|
|
"version-semver": "0.8.0",
|
|
"port-version": 1,
|
|
"description": "A real time, nanosecond resolution, remote telemetry, hybrid frame and sampling profiler for games and other applications.",
|
|
"homepage": "https://github.com/wolfpld/tracy",
|
|
"license": "BSD-3-Clause",
|
|
"supports": "!(windows & (arm | uwp))",
|
|
"dependencies": [
|
|
{
|
|
"name": "pthreads",
|
|
"platform": "!windows"
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"cli-tools": {
|
|
"description": "Build Tracy command-line tools: `capture`, `csvexport`, `import-chrome` and `update`",
|
|
"supports": "!(windows & x86)",
|
|
"dependencies": [
|
|
{
|
|
"name": "capstone",
|
|
"features": [
|
|
"arm",
|
|
"arm64",
|
|
"x86"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"gui-tools": {
|
|
"description": "Build Tracy GUI tool: `profiler` (aka `Tracy` executable)",
|
|
"supports": "!(windows & x86)",
|
|
"dependencies": [
|
|
{
|
|
"name": "capstone",
|
|
"features": [
|
|
"arm",
|
|
"arm64",
|
|
"x86"
|
|
]
|
|
},
|
|
"freetype",
|
|
"glfw3"
|
|
]
|
|
}
|
|
}
|
|
}
|