-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdub.json
More file actions
29 lines (29 loc) · 697 Bytes
/
dub.json
File metadata and controls
29 lines (29 loc) · 697 Bytes
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
{
"name": "odbc",
"targetType": "library",
"description": "Wrapper for ODBC headers",
"authors": [
"Samael Bate (singingbush)", "David L. Davis (original author)"
],
"homepage": "https://github.com/singingbush/odbc",
"license": "BSL-1.0",
"buildRequirements": [
"allowWarnings"
],
"systemDependencies": "ODBC needs to be available (odbc32.dll on Windows)",
"libs-posix": ["odbc"],
"libs-windows": ["odbc32"],
"configurations": [
{
"name": "default"
},
{
"name": "integration-test",
"sourcePaths" : ["test/source"],
"mainSourceFile": "test/source/main.d",
"targetName": "odbctest",
"targetPath": "test",
"targetType": "executable"
}
]
}