-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.sdl
63 lines (42 loc) · 1 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name "nurt"
description "Numem based D Runtime"
authors "Luna"
copyright "Copyright © 2025, Luna"
license "BSL-1.0"
targetPath "out/"
dependency "numem" version=">=1.0.5"
dependency "nulib:stdc" version="*"
configuration "ldc" {
platforms "ldc"
targetType "dynamicLibrary"
dflags "-defaultlib="
}
configuration "ldc-static" {
platforms "ldc"
targetType "staticLibrary"
dflags "-defaultlib="
}
configuration "dmd" {
platforms "dmd"
targetType "dynamicLibrary"
dflags "-defaultlib="
}
configuration "dmd-static" {
platforms "dmd"
targetType "staticLibrary"
dflags "-defaultlib="
}
configuration "gdc" {
platforms "gdc"
targetType "dynamicLibrary"
dflags "-nophoboslib"
}
configuration "gdc-static" {
platforms "gdc"
targetType "staticLibrary"
dflags "-nophoboslib"
}
// During unittests we basically don't want our runtime to take over.
configuration "unittest" {
targetType "none"
}