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", "name": "dscanner",
"description": "Swiss-army knife for D source code", "description": "Swiss-army knife for D source code",
"copyright": "© Brian Schott", "copyright": "© Brian Schott",
"authors": ["Brian Schott"], "authors": ["Brian Schott"],
"importPaths": ["."],
"license" : "Boost Software License - Version 1.0", "license" : "Boost Software License - Version 1.0",
"configurations": [ "targetType": "executable",
{ "sourcePaths": ["."],
"name": "library", "excludedSourceFiles": ["inifiled/inifiled.d", "inifiled/test.d"],
"targetType": "library",
"sourcePaths": ["std"],
},
{
"name": "dscanner",
"targetType": "executable",
"sourcePaths": ["."],
},
],
} }