Fix dub.json, and remove library configuration

excludedSouceFiles is for preventing conflict
This commit is contained in:
sinkuu 2014-07-09 16:30:28 +09:00
parent 3872490236
commit 114f8880fb
1 changed files with 7 additions and 17 deletions

View File

@ -1,20 +1,10 @@
{
"name": "dscanner",
"description": "Swiss-army knife for D source code",
"copyright": "© Brian Schott",
"authors": ["Brian Schott"],
"importPaths": ["."],
"name": "dscanner",
"description": "Swiss-army knife for D source code",
"copyright": "© Brian Schott",
"authors": ["Brian Schott"],
"license" : "Boost Software License - Version 1.0",
"configurations": [
{
"name": "library",
"targetType": "library",
"sourcePaths": ["std"],
},
{
"name": "dscanner",
"targetType": "executable",
"sourcePaths": ["."],
},
],
"targetType": "executable",
"sourcePaths": ["."],
"excludedSourceFiles": ["inifiled/inifiled.d", "inifiled/test.d"],
}