From ddd0b97a543d8f58348b33e23c7bd63991b9bf47 Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Fri, 1 Aug 2014 20:10:29 +0200 Subject: [PATCH] Added a unittest build config. --- package.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/package.json b/package.json index 9e3dbf9..cbf88d2 100644 --- a/package.json +++ b/package.json @@ -17,4 +17,25 @@ "profile": { "buildOptions": ["releaseMode", "optimize", "noBoundsCheck", "debugInfoC"] }, }, + "configurations": + [ + { + "name": "unittest", + "targetName": "unittest", + "targetType": "executable", + "sourceFiles": ["unittest.d", + "test/src/common.d", + "test/src/compare.d", + "test/src/constructor.d", + "test/src/emitter.d", + "test/src/errors.d", + "test/src/inputoutput.d", + "test/src/reader.d", + "test/src/representer.d", + "test/src/resolver.d", + "test/src/tokens.d", + ], + "mainSourceFile": "unittest.d", + } + ] }