-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdub.json
86 lines (86 loc) · 2.38 KB
/
dub.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dhtslib",
"description": "D bindings for htslib",
"authors": ["James S. Blachly, MD"],
"homepage": "https://github.com/blachlylab/dhtslib",
"license": "MIT",
"dependencies": {
"dhtslib:coordinates": "*"
},
"subPackages": [
"./coordinates/"
],
"sourcePaths": [
"./source/",
"./coordinates"
],
"configurations": [
{
"name": "source",
"targetType": "library",
"libs": ["hts"]
},
{
"name": "unittest",
"debugVersions": ["dhtslib_unittest"],
"libs": ["hts"]
},
{
"name": "unittest-safety",
"debugVersions": ["dhtslib_unittest"],
"libs": ["hts"],
"dflags": ["-dip1000"]
},
{
"name": "tabix_test",
"targetType": "executable",
"targetName": "tabix_gffreader",
"mainSourceFile": "test/tabix_gffreader.d",
"libs": ["hts"]
},
{
"name": "bgzf_test",
"targetType": "executable",
"targetName": "bgzfreader",
"mainSourceFile": "test/bgzfreader.d",
"libs": ["hts"]
},
{
"name": "sam_test",
"targetType": "executable",
"targetName": "samreader",
"mainSourceFile": "test/samreader.d",
"libs": ["hts"],
"debugVersions": ["dhtslib_debug"]
},
{
"name": "cigar_test",
"targetType": "executable",
"targetName": "cigartest",
"mainSourceFile": "test/cigar_segfault.d",
"libs": ["hts"],
"debugVersions": ["dhtslib_debug"]
},
{
"name": "vcf_writer_test",
"targetType": "executable",
"targetName": "vcfwriter",
"sourcePaths": ["test/vcf"],
"mainSourceFile": "test/vcf/vcfwriter.d",
"libs": ["hts"]
},
{
"name": "chunkby_test",
"targetType": "executable",
"targetName": "chunkby",
"mainSourceFile": "test/chunkby.d",
"libs": ["hts"]
},
{
"name": "source-static",
"targetType": "library",
"sourceFiles": ["htslib/libhts.a"],
"libs": [ ]
}
]
}