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. versions "DubUseCurl" "DubApplication"
  14. // Uncomment to get rich output about the file parsing and json <-> YAML
  15. // integrity checks
  16. //debugVersions "ConfigFillerDebug"
  17. }
  18.  
  19. configuration "library" {
  20. targetType "library"
  21. excludedSourceFiles "source/app.d"
  22. copyFiles "bin/libcurl.dll" "bin/libeay32.dll" "bin/ssleay32.dll" platform="windows"
  23. versions "DubUseCurl"
  24. }
  25.  
  26. configuration "library-nonet" {
  27. dependency "vibe-d:http" version=">=0.9.0 <0.10.0" optional=true
  28. targetType "library"
  29. excludedSourceFiles "source/app.d"
  30. }
  31.  
  32. configuration "dynamic-library-nonet" {
  33. dependency "vibe-d:http" version=">=0.9.0 <0.10.0" optional=true
  34. targetType "dynamicLibrary"
  35. excludedSourceFiles "source/app.d"
  36. }