-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvcpkg.json
More file actions
33 lines (33 loc) · 839 Bytes
/
vcpkg.json
File metadata and controls
33 lines (33 loc) · 839 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "signet-forge",
"version": "0.1.0",
"description": "Standalone C++20 Parquet library with AI-native extensions",
"homepage": "https://github.com/SIGNETSTACK/signet-forge",
"license": "AGPL-3.0-or-later",
"supports": "!uwp",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"zstd": {
"description": "Enable ZSTD compression codec",
"dependencies": ["zstd"]
},
"lz4": {
"description": "Enable LZ4 compression codec",
"dependencies": ["lz4"]
},
"gzip": {
"description": "Enable Gzip/zlib compression codec",
"dependencies": ["zlib"]
}
}
}