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 "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. }