-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
dub.sdl
44 lines (37 loc) · 1.29 KB
/
dub.sdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name "dub"
description "Package manager for D packages"
authors "Sönke Ludwig" "Martin Nowak" "Matthias Dondorff" "Sebastian Wilzbach" \
"more than 80 contributors total"
copyright "Copyright © 2012-2016 rejectedsoftware e.K., Copyright © 2012-2014 Matthias Dondorff"
license "MIT"
targetPath "bin"
// Deprecated module(s)
excludedSourceFiles "source/dub/packagesupplier.d"
configuration "application" {
targetType "executable"
mainSourceFile "source/app.d"
versions "DubUseCurl" "DubApplication"
// Uncomment to get rich output about the file parsing and json <-> YAML
// integrity checks
//debugVersions "ConfigFillerDebug"
dflags "-preview=in" platform="dmd"
dflags "-preview=in" platform="ldc"
//Disabled due to ICEs in gdc.
//dflags "-fpreview=in" platform="gdc"
}
configuration "library" {
targetType "library"
excludedSourceFiles "source/app.d"
copyFiles "bin/libcurl.dll" "bin/libeay32.dll" "bin/ssleay32.dll" platform="windows"
versions "DubUseCurl"
}
configuration "library-nonet" {
dependency "vibe-d:http" version=">=0.9.0 <0.11.0" optional=true
targetType "library"
excludedSourceFiles "source/app.d"
}
configuration "dynamic-library-nonet" {
dependency "vibe-d:http" version=">=0.9.0 <0.11.0" optional=true
targetType "dynamicLibrary"
excludedSourceFiles "source/app.d"
}