-
Notifications
You must be signed in to change notification settings - Fork 4
/
dub.sdl
32 lines (27 loc) · 801 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-raylib3"
description "Dynamic and static bindings to Raylib, compatible with -betterC, @nogc, and nothrow."
homepage ""
authors "Orfeo Da Vià"
license "Boost"
targetType "staticLibrary"
targetPath "lib"
targetName "bindbc-raylib3"
configuration "dynamic" {
versions "BindRaylib_Dynamic"
dependency "bindbc-loader" version="~>1.1.3"
}
configuration "dynamicBC" {
versions "BindRaylib_Dynamic"
dependency "bindbc-loader" version="~>1.1.3"
subConfiguration "bindbc-loader" "yesBC"
dflags "-betterC"
}
configuration "static" {
versions "BindRaylib_Static"
excludedSourceFiles "src/bindbc/raylib/binddynamic.d"
}
configuration "staticBC" {
dflags "-betterC"
versions "BindRaylib_Static"
excludedSourceFiles "src/bindbc/raylib/binddynamic.d"
}