forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lcpkg.json
58 lines (58 loc) · 1.11 KB
/
lcpkg.json
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "LCUI",
"version": "1.3.0",
"description": "A small C library for building user interfaces with C, XML and CSS.",
"author": "Liu",
"arch": [
"x86",
"x64"
],
"platform": [
"windows",
"uwp"
],
"mode": [
"debug",
"release"
],
"package": {
"output": "dist",
"entry": {
"lib": "bin/${arch}-${platform}/${mode}",
"bin": "bin/${arch}-${platform}/${mode}",
"include": "include"
}
},
"dependencies": {
"libxml2-lite": {
"version": "latest",
"uri": "vcpkg:libxml2-lite",
"linkage": "static"
},
"libpng": {
"version": "latest",
"uri": "vcpkg:libpng",
"linkage": "static"
},
"libjpeg-turbo": {
"version": "latest",
"uri": "vcpkg:libjpeg-turbo",
"linkage": "static"
},
"freetype": {
"version": "latest",
"uri": "vcpkg:freetype",
"linkage": "static"
},
"zlib": {
"version": "latest",
"uri": "vcpkg:zlib",
"linkage": "static"
},
"bzip2": {
"version": "latest",
"uri": "vcpkg:bzip2",
"linkage": "static"
}
}
}