-
Notifications
You must be signed in to change notification settings - Fork 22
/
dub.json
60 lines (60 loc) · 2.81 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
58
59
60
{
"name": "reggae",
"description": "A build system in D",
"copyright": "Copyright © 2015, Atila Neves",
"homepage": "https://github.com/atilaneves/reggae",
"authors": ["Atila Neves"],
"license": "BSD 3-clause",
"targetType": "executable",
"targetPath": "bin",
"importPaths": ["src", "payload"],
"stringImportPaths": ["payload/reggae", "."],
"sourcePaths": ["src", "payload"],
"mainSourceFile": "src/reggae/reggae_main.d",
"preGenerateCommands": ["rdmd $PACKAGE_DIR/list_payload.d $PACKAGE_DIR"],
"dependencies": {
"dub": "~>1.38.0"
},
"subConfigurations": {
"dub": "library"
},
"configurations": [
{ "name": "executable" },
{ "name": "unittest",
"targetType": "executable",
"targetName": "ut",
"targetPath": "bin",
"sourcePaths": ["tests", "payload"],
"mainSourceFile": "tests/main.d",
"versions": ["ReggaeTest"],
"dflags-dmd": ["-check=invariant=off"],
"excludedSourceFiles": ["src/reggae/reggae_main.d",
"tests/projects/project1/src/main.d",
"tests/projects/project2/source/main.d",
"tests/projects/d_and_cpp/src/main.d",
"tests/projects/multiple_outputs/main.d",
"tests/projects/multiple_outputs/compiler.d",
"tests/projects/multiple_outputs/translator.d",
"tests/projects/opt/foo.d",
"tests/projects/opt/bar.d",
"tests/projects/scriptlike/d/main.d",
"tests/projects/static_lib/src/main.d",
"tests/projects/dub/source/main.d",
"tests/projects/dub_prebuild/source/lemain.d",
"tests/projects/implicits/main.d",
"tests/projects/phony_proj/src/main.d",
"tests/projects/export_proj/hello.d",
"tests/projects/dub_postbuild/source/app.d",
"tests/projects/dub_postbuild/reggaefile.d",
"tests/projects/dub_depends_on_prebuild/source/app.d",
"tests/projects/d_cmake_shared/source/app.d",
"tests/projects/d_cmake_shared/reggaefile.d",
"tests/projects/d_cmake_static/source/app.d",
"tests/projects/d_cmake_static/reggaefile.d",
],
"dependencies": {
"unit-threaded": "*"
}
}
]
}