Added a unittest build config.

This commit is contained in:
Ferdinand Majerech 2014-08-01 20:10:29 +02:00
parent d4359f6394
commit ddd0b97a54

View file

@ -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",
}
]
}