-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdub.json
44 lines (36 loc) · 789 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
{
"name": "main",
"description": "Dagon over WebGPU",
"authors": [
"Timur Gafarov"
],
"copyright": "Copyright © 2021, Timur Gafarov",
"license": "BSL-1.0",
"dependencies": {
"dlib": "~>1.3.0",
"bindbc-wgpu": "~>0.22.0",
"bindbc-sdl": "~>1.0.1"
},
"importPaths": [
"src"
],
"sourcePaths": [
"src"
],
"versions": [
"SDL_2014"
],
"buildRequirements":[
"allowWarnings"
],
"libs-windows-x86": [
],
"libs-windows-x86_64": [
"user32"
],
"lflags-linux": ["-rpath=."],
"lflags-linux-x86_64": [
],
"copyFiles-windows-x86": ["lib/x86/*.dll"],
"copyFiles-windows-x86_64": ["lib/x64/*.dll"]
}