blob: 449eac15eba969245ec164622aba81e40b5899cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
"name": "gperftools",
"version": "2.16",
"description": "A high-performance multi-threaded malloc() implementation, plus some performance analysis tools.",
"homepage": "https://github.com/gperftools/gperftools",
"license": "BSD-3-Clause",
"supports": "((x86 | x64) & windows & !uwp) | !windows | mingw",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
],
"features": {
"libunwind": {
"description": "Support libunwind for stack traces",
"dependencies": [
"libunwind"
]
},
"override": {
"description": "Override Windows allocators",
"supports": "windows & staticcrt"
},
"tools": {
"description": "Install tools"
}
}
}
|