mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 16:39: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>
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "capstone",
|
|
"version": "5.0.0-rc2",
|
|
"port-version": 1,
|
|
"description": "Multi-architecture disassembly framework",
|
|
"homepage": "https://github.com/capstone-engine/capstone",
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"arm": {
|
|
"description": "Capstone disassembly support for ARM"
|
|
},
|
|
"arm64": {
|
|
"description": "Capstone disassembly support for ARM64"
|
|
},
|
|
"diet": {
|
|
"description": "Build Capstone in diet mode (reduced features for smaller size)"
|
|
},
|
|
"evm": {
|
|
"description": "Capstone disassembly support for EVM"
|
|
},
|
|
"m680x": {
|
|
"description": "Capstone disassembly support for M680X"
|
|
},
|
|
"m68k": {
|
|
"description": "Capstone disassembly support for M68k"
|
|
},
|
|
"mips": {
|
|
"description": "Capstone disassembly support for MIPS"
|
|
},
|
|
"osxkernel": {
|
|
"description": "Support for embedding Capstone into OSX Kernel extensions"
|
|
},
|
|
"ppc": {
|
|
"description": "Capstone disassembly support for PowerPC"
|
|
},
|
|
"sparc": {
|
|
"description": "Capstone disassembly support for SPARC"
|
|
},
|
|
"sysz": {
|
|
"description": "Capstone disassembly support for SysZ"
|
|
},
|
|
"tms320c64x": {
|
|
"description": "Capstone disassembly support for TMS320C64X"
|
|
},
|
|
"x86": {
|
|
"description": "Capstone disassembly support for x86"
|
|
},
|
|
"x86-reduce": {
|
|
"description": "Capstone disassembly support for x86 without support for less used instructions",
|
|
"dependencies": [
|
|
{
|
|
"name": "capstone",
|
|
"features": [
|
|
"x86"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"xcore": {
|
|
"description": "Capstone disassembly support for XCore"
|
|
}
|
|
}
|
|
}
|