-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdub.json
More file actions
77 lines (65 loc) · 2.42 KB
/
dub.json
File metadata and controls
77 lines (65 loc) · 2.42 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
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
{
"name": "aisutil",
"authors": [
"James Thompson (Inkblot Software)"
],
"description": "AIS data processing utilities",
"copyright": "Copyright © 2017-2018 Inkblot Software Limited",
"license": "MPLv2.0",
"stringImportPaths": ["src/aisutil", "./"],
"lflags-windows": ["/NODEFAULTLIB:library",
"/VERBOSE:LIB",
"/LIBPATH:win_libs",
"/LIBPATH:libaiswrap/win_build/Release",
"/LIBPATH:libaiswrap/win_build/libais/src/libais/Release"],
"lflags-linux": ["libaiswrap/lin_build/liblibaiswrap.a",
"libaiswrap/lin_build/libais/src/libais/libais.a"],
"libs-linux": ["sodium", "aisnmea", "czmq", "zmq", "stdc++"],
"libs-windows": ["libaiswrap",
"ais",
"libaisnmea",
"libczmq",
"libzmq",
"Iphlpapi",
"Rpcrt4",
"advapi32",
"ws2_32",
"msvcrt",
"libcpmt"],
"configurations": [
{
"name": "aisutil",
"targetName": "aisutil",
"targetType": "executable",
"targetPath": "bin/",
"mainSourceFile": "app_src/aisutil_gui.d",
"COMMENT: dependencies": [
"This very specific set of versions weaves around some very ",
"annoying derelict dependency incompatibilities. These are ",
"likely to work themselves out as people trip over them, so ",
"when this happens please change all this to just: ",
"dlangui: ~>(the latest)"
],
"dependencies": {
"dlangui": "==0.9.180",
"derelict-ft": "==1.1.2",
"derelict-util": "==2.0.6"
}
},
{
"name": "aisnmea_to_ndjson",
"targetName": "aisnmea_to_ndjson",
"targetType": "executable",
"targetPath": "bin/",
"mainSourceFile": "app_src/aisnmea_to_ndjson.d"
},
{
"name": "mcaais_to_ndjson",
"targetName": "mcaais_to_ndjson",
"targetType": "executable",
"targetPath": "bin/",
"mainSourceFile": "app_src/mcaais_to_ndjson.d"
}
],
"IGNOREME_dlangui": "~>0.9.173"
}