-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
dub.sdl
32 lines (27 loc) · 840 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
30
31
32
name "bindbc-freetype"
description "Static & dynamic bindings to FreeType, compatible with BetterC, @nogc, and nothrow."
authors "Aya Partridge" "Mike Parker"
license "BSL-1.0"
dependency "bindbc-common" version="~>1.0"
targetType "staticLibrary"
targetPath "lib"
targetName "BindBC_FT"
configuration "dynamic" {
dependency "bindbc-loader" version="~>1.1"
}
configuration "dynamicBC" {
dependency "bindbc-loader" version="~>1.1"
subConfiguration "bindbc-loader" "yesBC"
subConfiguration "bindbc-common" "yesBC"
buildOptions "betterC"
}
configuration "static" {
versions "BindFT_Static"
excludedSourceFiles "source/bindbc/freetype/binddynamic.d"
}
configuration "staticBC" {
subConfiguration "bindbc-common" "yesBC"
versions "BindFT_Static"
buildOptions "betterC"
excludedSourceFiles "source/bindbc/freetype/binddynamic.d"
}