-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
42 lines (40 loc) · 1.05 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
{
"authors": ["Chris Piker"],
"dependencies": { "dxml": {"path":"../dxml"}},
"description": "D extensions for the das2C library",
"license": "MIT",
"name": "das2",
"homepage": "https://github.com/das-developers/das2D",
"lflags":["-L$LD_LIBRARY_PATH"],
"lflags-osx":["-L$LD_LIBRARY_PATH","-L/usr/local/opt/openssl/lib"],
"configurations":[
{
"name":"minimum",
"targetType": "sourceLibrary",
"libs":[
"das3.0", "fftw3", "expat", "ssl", "crypto", "z", "m", "pthread"
],
"excludedSourceFiles":["das2c/spice.d"]
},
{
"name":"spice",
"targetType":"sourceLibrary",
"versions":["spice"],
"libs":[
"fftw3", "expat", "ssl", "crypto", "z", "m", "pthread"
],
"sourceFiles":["$DAS2_LIB","$CSPICE_LIB"]
}
],
"subPackages":[
{
"name":"tsread","targetType":"executable",
"sourceFiles":["utilities/tsread.d"],
"dependencies":{"das2d":{"path":"./"}},
"configurations":[
{"name":"das3","targetName":"das3_tsread","versions":["das3"]},
{"name":"das2","targetName":"das2_tsread","versions":["das2"]}
]
}
]
}