forked from lodo1995/experimental.xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
31 lines (31 loc) · 993 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
{
"name": "std-experimental-xml",
"description": "A replacement for Phobos std.xml, developed as a GSoC 2016 project",
"authors": ["Lodovico Giaretta"],
"homepage": "https://github.com/lodo1995/experimental.xml",
"targetType": "library",
"license": "BSL-1.0",
"excludedSourceFiles": ["source/benchmark.d", "source/test.d", "source/random_benchmark/*"],
"configurations":
[
{
"name": "library",
},
{
"name": "benchmark",
"targetType": "executable",
"mainSourceFile": "source/benchmark.d",
},
{
"name": "random-benchmark",
"targetType": "executable",
"mainSourceFile": "source/random_benchmark/random_benchmark.d",
"sourceFiles": ["source/random_benchmark/genxml.d"],
},
{
"name": "test",
"targetType": "executable",
"mainSourceFile": "source/test.d",
},
],
}