Newer
Older
dub_jkp / dub.sdl
  1. name "dub"
  2. description "Package manager for D packages"
  3. authors "Sönke Ludwig" "Martin Nowak" "Matthias Dondorff" "Sebastian Wilzbach" \
  4. "more than 80 contributors total"
  5. copyright "Copyright © 2012-2016 rejectedsoftware e.K., Copyright © 2012-2014 Matthias Dondorff"
  6. license "MIT"
  7.  
  8. targetPath "bin"
  9.  
  10. configuration "application" {
  11. targetType "executable"
  12. mainSourceFile "source/app.d"
  13. libs "curl"
  14. versions "DubUseCurl" "DubApplication"
  15. // Uncomment to get rich output about the file parsing and json <-> YAML
  16. // integrity checks
  17. //debugVersions "ConfigFillerDebug"
  18. }
  19.  
  20. configuration "library" {
  21. targetType "library"
  22. excludedSourceFiles "source/app.d"
  23. copyFiles "bin/libcurl.dll" "bin/libeay32.dll" "bin/ssleay32.dll" platform="windows"
  24. versions "DubUseCurl"
  25. }
  26.  
  27. configuration "library-nonet" {
  28. dependency "vibe-d:http" version=">=0.9.0 <0.10.0" optional=true
  29. targetType "library"
  30. excludedSourceFiles "source/app.d"
  31. }
  32.  
  33. configuration "dynamic-library-nonet" {
  34. dependency "vibe-d:http" version=">=0.9.0 <0.10.0" optional=true
  35. targetType "dynamicLibrary"
  36. excludedSourceFiles "source/app.d"
  37. }