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