-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
57 lines (57 loc) · 1.52 KB
/
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
48
49
50
51
52
53
54
55
56
57
{
"name" : "els-the-dog-water-booster",
"description" : "Simple game of Els the dog. Avoid anomalies in sky",
"authors" : ["ByancaUwU"],
"copyright" : "Copyright © 2025, ByancaUwU",
"license" : "MIT",
"dependencies": {
"joka": "*",
"parin": {
"path": "include/cparin"
}
},
"targetName": "ElsTheFox_WaterBooster",
"configurations": [
{
"name": "linux",
"targetType": "executable",
"platforms": ["linux"],
"dflags": ["-i"],
"lflags": ["-L.", "-rpath=$$ORIGIN"],
"libs": [
"raylib",
"GL",
"m",
"pthread",
"dl",
"rt",
"X11"
]
},
{
"name": "windows",
"targetType": "executable",
"platforms": ["windows"],
"dflags": ["-i"],
"libs": [
"raylib"
]
},
{
"name": "osx",
"targetType": "executable",
"platforms": ["osx"],
"dflags": ["-i"],
"lflags": ["-L.", "-rpath", "@executable_path/"],
"libs": [
"raylib"
]
},
{
"name": "web",
"targetType": "staticLibrary",
"targetName": "webgame",
"dflags": ["-mtriple=wasm32-unknown-unknown-wasm", "-checkaction=halt", "-betterC", "-i", "--release"]
}
]
}