Newer
Older
dub_jkp / test / custom-unittest / dub.json
@Sönke Ludwig Sönke Ludwig on 15 Jan 2014 386 bytes Add some test packages.
  1. {
  2. "name": "custom-unittest",
  3. "configurations": [
  4. {
  5. "name": "application",
  6. "targetType": "executable"
  7. },
  8. {
  9. "name": "library",
  10. "excludedSourceFiles": ["source/app.d"],
  11. "targetType": "library"
  12. },
  13. {
  14. "name": "unittest",
  15. "targetType": "executable",
  16. "excludedSourceFiles": ["source/app.d"],
  17. "sourcePaths": ["test/"],
  18. "importPaths": ["test/"]
  19. }
  20. ]
  21. }