-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdub.sdl
39 lines (36 loc) · 1.47 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
name "erupted"
description "Auto-generated D bindings for Vulkan"
copyright "Copyright 2015-2016 The Khronos Group Inc.; Copyright 2016 Alex Parrill; Copyright 2018 Peter Particle"
authors "Alex Parrill" "Peter Particle"
targetType "sourceLibrary"
license "BSD 2-clause"
// example how to initialize a logical device
subPackage {
name "devices"
description "Simple Vulkan example"
targetType "executable"
sourceFiles "examples/devices.d"
dependency "erupted" path = "."
}
// example how query and enable layers
subPackage {
name "layers"
description "Simple Vulkan example"
targetType "executable"
sourceFiles "examples/layers.d"
dependency "erupted" path = "."
}
subPackage {
name "compute"
description "Simple Vulkan example"
targetType "executable"
sourceFiles "examples/compute/compute.d"
dependency "erupted" path = "."
buildOptions "betterC"
libs "libcmt"
// libs "msvcrt"
// lflags "/LTCG" "/NODEFAULTLIB:LIBCMT" "/NODEFAULTLIB:LIBVCRUNTIME"
// libs "D:/Code/DLang/dmd2/windows/lib64/mingw/msvcrt"
// libs "D:/Code/DLang/ldc2-1.28.0-windows-x64/lib/mingw/msvcrt"
// libs "C:/Program Files (x86)/Windows Kits/10/Lib/10.0.19041.0/ucrt/x64/libucrt"
}