-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvcpkg.json
More file actions
43 lines (43 loc) · 1 KB
/
vcpkg.json
File metadata and controls
43 lines (43 loc) · 1 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "https://raw.githubusercontent.com/Microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "sdrtrunk-transcriber",
"version": "1.0.0",
"description": "C++ application for transcribing SDRTrunk P25 recordings",
"homepage": "https://github.com/swiftraccoon/cpp-sdrtrunk-transcriber",
"documentation": "https://github.com/swiftraccoon/cpp-sdrtrunk-transcriber/blob/main/README.md",
"license": "GPL-3.0",
"builtin-baseline": "d30fdf55cfca16e12bc3ad99cbc615997014b61b",
"dependencies": [
{
"name": "curl",
"features": [
"ssl",
"openssl"
]
},
{
"name": "sqlite3"
},
{
"name": "mpg123"
}
],
"features": {
"tests": {
"description": "Build with testing support",
"dependencies": [
{
"name": "gtest"
}
]
},
"whisper": {
"description": "Whisper.cpp integration support",
"dependencies": [
{
"name": "whisper-cpp"
}
]
}
}
}