Newer
Older
dub_jkp / package.json
@Sönke Ludwig Sönke Ludwig on 10 Dec 2013 1 KB Fix building DUB using DUB on Posix.
  1. {
  2. "name": "dub",
  3. "description": "Package manager for D packages",
  4. "license": "MIT",
  5. "copyright": "Copyright 2012 rejectedsoftware e.K.",
  6. "authors": [
  7. "Matthias Dondorff",
  8. "Sönke Ludwig"
  9. ],
  10. "targetPath": "bin",
  11. "configurations": [
  12. {
  13. "name": "application",
  14. "targetType": "executable",
  15. "mainSourceFile": "source/app.d",
  16. "libs": ["curl"],
  17. "libs-posix-dmd": ["phobos2"],
  18. "copyFiles-windows": ["curllib.dll", "libeay32.dll", "openldap.dll", "ssleay32.dll"],
  19. "versions": ["DubUseCurl"]
  20. },
  21. {
  22. "name": "library",
  23. "targetType": "library",
  24. "excludedSourceFiles": ["source/app.d"],
  25. "libs": ["curl"],
  26. "libs-posix-dmd": ["phobos2"],
  27. "copyFiles-windows": ["curllib.dll", "libeay32.dll", "openldap.dll", "ssleay32.dll"],
  28. "versions": ["DubUseCurl"]
  29. },
  30. {
  31. "name": "library-nonet",
  32. "targetType": "library",
  33. "dependencies": {
  34. "vibe-d": {"version": "~master", "optional": true}
  35. },
  36. "excludedSourceFiles": ["source/app.d"]
  37. }
  38. ]
  39. }