-
Notifications
You must be signed in to change notification settings - Fork 7
/
dub.json
47 lines (40 loc) · 902 Bytes
/
dub.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
{
"name": "cafe",
"description": "Creator's Advanced Film Editor",
"homepage": "https://aoitofu.github.io/CAFE",
"license": "GNU General Public License v3.0",
"authors": [
"aoitofu",
"Aodaruma",
"SEED264"
],
"targetName": "cafe",
"targetPath": "bin",
"targetType": "executable",
"dependencies": {
"dlangui": "~>0.9.56",
"derelict-al": "~>1.0.3",
"gl3n": "~>1.3.1"
},
"stringImportPaths": [
"./views",
"./views/themes",
"./views/langs",
"./views/icons",
"./source/renderer/GLSL"
],
"subConfigurations": {
"dlangui": "sdl"
},
"configurations": [
{
"name": "default"
}
],
"copyFiles-windows-x86_64": [
"dll/OpenAL32.dll"
],
"copyFiles-windows-x86": [
"dll/OpenAL32.dll"
]
}