forked from dlang/cdcdb
Добавлены описания
This commit is contained in:
parent
8716a90463
commit
8639c36f46
8 changed files with 388 additions and 34 deletions
27
dub.json
27
dub.json
|
@ -18,20 +18,41 @@
|
|||
"name": "static",
|
||||
"targetType": "staticLibrary",
|
||||
"targetPath": "lib",
|
||||
"sourcePaths": ["source"]
|
||||
"sourcePaths": [
|
||||
"source"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dynamic",
|
||||
"targetType": "dynamicLibrary",
|
||||
"targetPath": "lib",
|
||||
"sourcePaths": ["source"]
|
||||
"sourcePaths": [
|
||||
"source"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "binary",
|
||||
"targetType": "executable",
|
||||
"targetPath": "bin",
|
||||
"mainSourceFile": "test/app.d",
|
||||
"sourcePaths": ["source", "test"]
|
||||
"sourcePaths": [
|
||||
"source",
|
||||
"test"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "unittest",
|
||||
"targetType": "executable",
|
||||
"targetPath": "bin",
|
||||
"sourcePaths": [
|
||||
"source",
|
||||
"test"
|
||||
],
|
||||
"buildOptions": [
|
||||
"unittests"
|
||||
],
|
||||
"dflags": ["-main"],
|
||||
"mainSourceFile": "test/unittest.d"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue