-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdub.json
43 lines (41 loc) · 884 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
{
"authors": [
"Superbelko"
],
"copyright": "Copyright © 2021, Superbelko",
"dependencies": {
"bindbc-sdl": "~>0.21.2"
},
"description": "SDL2 Android demo project",
"dflags": [
"-g"
],
"license": "unlicense",
"name": "android-sdl",
"targetName": "main",
"targetType": "dynamicLibrary",
"versions": [ "SDL206" ],
"configurations": [
{
"name": "android-arm64",
"platforms": ["android-aarch64"],
"targetPath": "app/libs/arm64-v8a",
"dflags": [ "-linker=bfd", "--link-defaultlib-debug=true" ],
"libs": ["log"]
},
{
"name": "android-armv7a",
"platforms": ["android-arm"],
"targetPath": "app/libs/armeabi-v7a",
"dflags": [ "-linker=bfd", "--link-defaultlib-debug=true" ],
"libs": ["log"]
},
{
"name": "default",
"platforms": ["windows", "macos", "linux"]
}
],
"subConfigurations": {
"bindbc-sdl": "dynamicBC"
}
}