Newer
Older
dub_jkp / package.json
  1. {
  2. "name": "dub",
  3. "description": "Package manager for D packages",
  4. "license": "MIT",
  5. "copyright": "Copyright © 2012-2014 rejectedsoftware e.K., Copyright © 2012-2014 Matthias Dondorff",
  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. "copyFiles-windows": ["curllib.dll", "libeay32.dll", "openldap.dll", "ssleay32.dll"],
  18. "versions": ["DubUseCurl"]
  19. },
  20. {
  21. "name": "library",
  22. "targetType": "library",
  23. "excludedSourceFiles": ["source/app.d"],
  24. "libs": ["curl"],
  25. "copyFiles-windows": ["curllib.dll", "libeay32.dll", "openldap.dll", "ssleay32.dll"],
  26. "versions": ["DubUseCurl"]
  27. },
  28. {
  29. "name": "library-nonet",
  30. "targetType": "library",
  31. "dependencies": {
  32. "vibe-d": {"version": "~>0.7.19-rc.4", "optional": true}
  33. },
  34. "excludedSourceFiles": ["source/app.d"]
  35. }
  36. ]
  37. }