-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdub.json
40 lines (39 loc) · 969 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
{
"name": "d_android",
"targetType": "library",
"description": "Helper programs, instructions, and bindings for using D on Android",
"license": "Apache-2.0",
"dependencies": {
"d_android:ndk_bindings": "*",
"d_android:java_bindings": "*"
},
"subPackages": [
{
"name": "ndk_bindings",
"description": "Bindings for Android NDK",
"sourcePaths": ["translated_headers"],
"importPaths": ["translated_headers"],
"dependencies": {
"arsd-official:jni": ">=5.0.2"
},
"targetType": "library"
},
{
"name": "java_bindings",
"description": "Bindings for Android Java classes",
"importPaths": ["java_bindings"],
"sourceFiles": ["source/hacks.d"],
"dflags": ["-i"],
"dependencies": {
"arsd-official:jni": ">=5.0.2"
},
"targetType": "sourceLibrary"
},
{
"name": "setup",
"description": "Setup program for Android development",
"sourceFiles": ["android-setup.d"],
"targetType": "executable"
}
]
}