forked from capnproto/capnproto-dlang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.sdl
46 lines (39 loc) · 1.5 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
name "capnproto-dlang"
description "Cap'n Proto in pure D"
authors "Thomas Brix Larsen"
copyright "Copyright © 2017, Thomas Brix Larsen"
license "MIT"
configuration "lib" {
targetType "library"
excludedSourceFiles "source/capnproto/benchmark/*" "source/samples/*"
}
configuration "test" {
targetName "test"
targetType "executable"
excludedSourceFiles "source/capnproto/benchmark/*" "source/capnproto/tests/*" "source/samples/mmap.d"
}
configuration "benchmark-carsales" {
targetName "benchmark-carsales"
targetType "executable"
excludedSourceFiles "source/capnproto/benchmark/CatRank.d" "source/capnproto/benchmark/Eval.d" "source/samples/*" "source/capnproto/tests/*"
}
configuration "benchmark-catrank" {
targetName "benchmark-catrank"
targetType "executable"
excludedSourceFiles "source/capnproto/benchmark/CarSales.d" "source/capnproto/benchmark/Eval.d" "source/samples/*" "source/capnproto/tests/*"
}
configuration "benchmark-eval" {
targetName "benchmark-eval"
targetType "executable"
excludedSourceFiles "source/capnproto/benchmark/CatRank.d" "source/capnproto/benchmark/CarSales.d" "source/samples/*" "source/capnproto/tests/*"
}
configuration "sample-addressbook" {
targetName "addressbook"
targetType "executable"
excludedSourceFiles "source/samples/mmap.d" "source/capnproto/benchmark/*" "source/capnproto/tests/*"
}
configuration "sample-mmap" {
targetName "mmap"
targetType "executable"
excludedSourceFiles "source/samples/test.d" "source/capnproto/benchmark/*" "source/capnproto/tests/*"
}