-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.sdl
45 lines (38 loc) · 978 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
33
34
35
36
37
38
39
40
41
42
43
44
45
name "gamebean-emu"
description "gamebeanadvance emu"
authors "bean"
copyright "Copyright © 2021, bean"
license "proprietary"
dependency "elf-d" version="~>0.2.5"
dependency "bindbc-opengl" version="~>1.0.0"
dependency "silly" version="~>1.1.1"
dependency "reng" version="~>0.20.0-beta3"
dependency "bindbc-sdl" version="~>1.0.1"
dependency "commandr" version="~>0.2.0"
targetType "executable"
subConfiguration "reng" "lib-minimal"
versions "GL_AllowDeprecated"
configuration "default" {
targetType "executable"
versions "default"
}
configuration "gperf" {
dependency "gperftools_d" version="~>0.1.0"
targetType "executable"
dflags "-O1" "--boundscheck=off"
versions "gperf"
}
configuration "debug" {
dependency "derelict-imgui" version="~>0.10.0"
targetType "executable"
libs "cimgui"
versions "Imgui"
}
configuration "diag" {
targetType "executable"
versions "diag"
}
configuration "optimize" {
targetType "executable"
dflags "--boundscheck=off" "-O3"
}