forked from aurorafossorg/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
52 lines (52 loc) · 959 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
44
45
46
47
48
49
50
51
52
{
"name": "aurorafw",
"description": "A Powerful General Purpose Framework",
"copyright": "Copyright © 2018-2019, Aurora Free Open Source Software",
"license": "LGPL-3.0",
"authors": [
"Luís Ferreira",
"Filipe Laíns",
"Ricardo Subtil",
"João Lourenço"
],
"targetType": "library",
"targetPath": ".out/bin",
"targetName": "aurorafw",
"sourcePaths": [ "src/source" ],
"importPaths": [ "src/source" ],
"dependencies": {
":cli": "*",
":core": "*",
":entity": "*",
":event": "*",
":math": "*",
":metadata": "*",
":stdx": "*",
":unit": "*"
},
"subPackages": [
"src/cli",
"src/core",
"src/entity",
"src/event",
"src/math",
"src/metadata",
"src/stdx",
"src/unit"
],
"configurations": [
{
"name": "default"
},
{
"name": "unittest",
"sourcePaths": [ "src" ],
"excludedSourceFiles": [
"src/unit/source/aurorafw/unit/internal/bootstrap.d"
],
"importPaths": [
"src"
]
}
]
}