dxdiff/dub.json
2025-08-31 16:47:55 +03:00

48 lines
No EOL
795 B
JSON

{
"authors": [
"alexander"
],
"copyright": "Copyright © 2025, alexander",
"description": "A minimal D application.",
"license": "proprietary",
"name": "dxdiff",
"targetPath": "bin",
"targetType": "executable",
"libs": [
"xdiff"
],
"dependencies": {
"xdiff": {
"repository": "git+https://git.zhirov.kz/dlang/xdiff.git",
"version": "e2396bc172eba813cdcd1a96c494e35d687f576a"
}
},
"configurations": [
{
"name": "lib",
"targetType": "library",
"sourcePaths": [
"source"
],
"excludedSourceFiles": [
"source/app.d"
]
},
{
"name": "app",
"targetType": "executable",
"mainSourceFile": "source/app.d",
"sourcePaths": [
"source"
]
}
],
"buildTypes": {
"unittest": {
"dflags": [
"-unittest",
"-g"
]
}
}
}