-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdub.json
More file actions
37 lines (37 loc) · 1.02 KB
/
dub.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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": "decimal",
"authors": [
"rumbu13"
],
"description": "IEEE-754-2008 compliant decimal data type.",
"copyright": "Copyright © 2017 rumbu13",
"license": "boost",
"sourcePaths": [ "src"],
"configurations": [
{
"name": "library",
"targetType": "library",
"excludedSourceFiles": [ "src/benchmark/*", "src/test/*", "src/betterc/*"]
},
{
"name": "unittest",
"targetType": "executable",
"excludedSourceFiles": [ "src/benchmark/*", "src/betterc/*"]
},
{
"name": "benchmark",
"targetType": "executable",
"excludedSourceFiles": [ "src/test/*", "src/betterc/*"]
},
{
"name": "betterc",
"targetType": "executable",
"excludedSourceFiles": [ "src/benchmark/*", "src/test/*"]
},
{
"name": "doc",
"targetType": "library",
"excludedSourceFiles": [ "src/benchmark/*", "src/test/*", "src/betterc/*"]
}
]
}