-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.sdl
54 lines (46 loc) · 1.62 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
name "bindbc-diligent"
description "A configurable set of dynamic and static D bindings, to Diligent Engine, a modern cross-platform graphics library and rendering framework. Compatible with @nogc, nothrow, and BetterC. "
homepage ""
authors "Thomas Bishop"
license "Boost"
targetType "staticLibrary"
targetPath "lib"
targetName "BindBC_Diligent"
configuration "linux" {
platforms "linux"
dependency "erupted" version="~>2.1.51+v1.2.201"
dependency "bindbc-opengl" version="~>1.0.0"
versions "GL_41" "GL_ARB"
excludedSourceFiles "source/bindbc/diligent/graphics/d3d11/*"
excludedSourceFiles "source/bindbc/diligent/graphics/d3d12/*"
excludedSourceFiles "source/bindbc/diligent/graphics/metal/*"
excludedSourceFiles "source/bindbc/diligent/graphics/loadenginedll.d"
excludedSourceFiles "source/bindbc/diligent/graphics/opengl/renderdevicegles.d"
}
configuration "windows" {
platforms "Windows"
dependency "directx-d" version="~>0.14.0"
}
configuration "android" {
platforms "Android"
dependency "d_android" version="~>0.1.1"
}
configuration "dynamic" {
versions "BindDiligent_Dynamic"
dependency "bindbc-loader" version="~>1.0.0"
}
configuration "dynamicBC" {
versions "BindDiligent_Dynamic"
dependency "bindbc-loader" version="~>1.0.0"
subConfiguration "bindbc-loader" "yesBC"
dflags "-betterC"
}
configuration "static" {
versions "BindDiligent_Static"
excludedSourceFiles "source/bindbc/diligent/binddynamic.d"
}
configuration "staticBC" {
dflags "-betterC"
versions "BindDiligent_Static"
excludedSourceFiles "source/bindbc/diligent/binddynamic.d"
}