1
0
Fork 0
forked from dlang/cdcdb

Добавлены описания

This commit is contained in:
Alexander Zhirov 2025-09-13 02:50:01 +03:00
parent 8716a90463
commit 8639c36f46
Signed by: alexander
GPG key ID: C8D8BE544A27C511
8 changed files with 388 additions and 34 deletions

View file

@ -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"
}
]
}