From 97c2d9aff56c81816d496b108e8d8bd6ac614bca Mon Sep 17 00:00:00 2001 From: Martin Nowak Date: Fri, 14 Feb 2014 01:49:57 +0100 Subject: [PATCH] add dub.json - defines 2 configurations "library" and "dscanner" --- dub.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dub.json diff --git a/dub.json b/dub.json new file mode 100644 index 0000000..854869c --- /dev/null +++ b/dub.json @@ -0,0 +1,19 @@ +{ + "name": "dscanner", + "description": "Swiss-army knife for D source code", + "copyright": "Copyright © 2012 -, Brian Schott", + "authors": ["Brian Schott"], + "importPaths": ["."], + "configurations": [ + { + "name": "library", + "targetType": "library", + "sourcePaths": ["stdx"], + }, + { + "name": "dscanner", + "targetType": "executable", + "sourcePaths": ["."], + }, + ], +}