-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
33 lines (33 loc) · 892 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
{
"name": "wrend",
"description": "Bindings to the Wren language for use with the D programming language",
"homepage": "https://github.com/nomad-software/wrend",
"authors": ["Gary Willoughby"],
"copyright": "Copyright (c) 2015 Gary Willoughby",
"license": "MIT",
"sourceFiles-linux-x86_64": ["lib/linux/x86_64/libwren.a"],
"excludedSourceFiles": [
"source/c/*",
],
"buildTypes": {
"docs": {
"buildOptions": ["deprecationErrors", "syntaxOnly", "warningsAsErrors"],
"dflags": ["-c", "-Ddtemp", "-op"],
"postBuildCommands": ["rm -rf docs", "mv temp/source docs", "rm -rf temp"],
},
},
"configurations": [
{
"name": "library",
"targetType": "library",
"targetPath": "build",
},
{
"name": "example",
"targetType": "executable",
"mainSourceFile": "source/example/example.d",
"targetName": "example",
"targetPath": "build/example",
},
]
}