Newer
Older
dub_jkp / package.json
  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. "libs": ["curl"],
  16. "copyFiles-windows": ["curllib.dll", "libeay32.dll", "openldap.dll", "ssleay32.dll"],
  17. "versions": ["DubUseCurl"]
  18. },
  19. {
  20. "name": "library",
  21. "targetType": "library",
  22. "excludedSourceFiles": ["source/app.d"],
  23. "libs": ["curl"],
  24. "copyFiles-windows": ["curllib.dll", "libeay32.dll", "openldap.dll", "ssleay32.dll"],
  25. "versions": ["DubUseCurl"]
  26. },
  27. {
  28. "name": "library-nonet",
  29. "targetType": "library",
  30. "excludedSourceFiles": ["source/app.d"]
  31. }
  32. ]
  33. }