-
Notifications
You must be signed in to change notification settings - Fork 11
/
dub.sdl
37 lines (32 loc) · 1.02 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
name "bindbc-imgui"
description "Dynamic and static bindings to imgui, compatible with -betterC, @nogc, and nothrow."
homepage ""
authors "Joshua T. Fisher"
license "Boost"
//targetType "staticLibrary"
targetType "executable"
targetPath "lib"
targetName "BindBC_ImGui"
configuration "dynamic" {
dependency "bindbc-loader" version="~>0.3.0"
dependency "bindbc-sdl" version="~>0.1.0"
dependency "bindbc-glfw" version="~>0.5.0"
dependency "bindbc-opengl" version="~>0.1.0"
}
configuration "dynamicBC" {
dependency "bindbc-loader" version="~>0.3.0"
subConfiguration "bindbc-loader" "yesBC"
dependency "bindbc-sdl" version="~>0.1.0"
dependency "bindbc-glfw" version="~>0.5.0"
dependency "bindbc-opengl" version="~>0.1.0"
dflags "-betterC"
}
configuration "static" {
versions "BindImGui_Static"
excludedSourceFiles "source/bindbc/imgui/binddynamic.d"
}
configuration "staticBC" {
dflags "-betterC"
versions "BindImGui_Static"
excludedSourceFiles "source/bindbc/imgui/binddynamic.d"
}