forked from dlang-tour/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.sdl
29 lines (27 loc) · 802 Bytes
/
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
name "dlang-tour"
description "The Dlang Tour"
copyright "Copyright © 2016, André Stein"
authors "André Stein" "Sebastian Wilzbach"
homepage "http://tour.dlang.org"
license "Boost"
dependency "vibe-d:web" version="~>0.9"
dependency "dyaml" version="~>0.8"
dependency "dfmt" version="~>0.13"
dependency "mustache-d" version="~>0.1"
copyFiles "config.yml"
// Commented out until GDC is up to date. Doesn't work
// with 2.066.1 frontends currently.
// subConfiguration "vibe-d" "libasync"
configuration "executable" {
targetType "executable"
versions "VibeDefaultMain"
}
configuration "static" {
targetType "executable"
versions "VibeDefaultMain"
lflags "-lz" "-lssl" "-lcrypto" "-ldl" platform="posix"
dflags "-static" platform="posix"
}
configuration "library" {
versions "VibeCustomMain"
}