-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdub.sdl
More file actions
30 lines (26 loc) · 701 Bytes
/
dub.sdl
File metadata and controls
30 lines (26 loc) · 701 Bytes
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
name "during"
description "dlang wrapper around linux io_uring API"
authors "Tomáš Chaloupka"
license "BSL-1.0"
homepage "https://github.com/tchaloupka/during"
copyright "Copyright © 2019, Tomáš Chaloupka"
targetType "library"
platforms "linux"
configuration "default" {
}
configuration "betterC" {
buildOptions "betterC"
}
configuration "unittest" {
dependency "silly" version=">=1.1.1"
importPaths "tests"
sourcePaths "tests"
excludedSourceFiles "tests/fake_dub_root.d"
}
configuration "during-test-betterC" {
targetType "executable"
targetName "during-test-betterC"
buildOptions "betterC"
importPaths "tests" "source"
sourcePaths "tests" "source"
}