forked from buggins/ddbc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
42 lines (42 loc) · 1.47 KB
/
dub.json
File metadata and controls
42 lines (42 loc) · 1.47 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
{
"name": "ddbc",
"description": "DB Connector for D language, similar to JDBC",
"authors": ["Vadim Lopatin"],
"homepage": "https://github.com/buggins/ddbc",
"license": "Boost Software License (BSL 1.0)",
"dependencies": {
"mysql-native": ">=0.0.12"
},
"targetPath": "lib",
"targetType": "staticLibrary",
"configurations": [
{
"name": "full",
"versions": ["USE_MYSQL", "USE_SQLITE", "USE_PGSQL"],
"libs-posix": ["sqlite3", "pq"],
"libs-windows": ["sqlite3", "libpq"],
"copyFiles-windows-x86": [ "libs/win32/sqlite3.dll", "libs/win32/libpq.dll", "libs/win32/intl.dll" ],
"sourceFiles-windows-x86" : [ "libs/win32/sqlite3.lib", "libs/win32/libpq.lib" ]
},
{
"name": "MySQL",
"versions": ["USE_MYSQL"]
},
{
"name": "SQLite",
"versions": ["USE_SQLITE"],
"libs-posix": ["sqlite3"],
"libs-windows": ["sqlite3"],
"copyFiles-windows-x86": [ "libs/win32/sqlite3.dll" ],
"sourceFiles-windows-x86" : [ "libs/win32/sqlite3.lib" ]
},
{
"name": "PGSQL",
"versions": ["USE_PGSQL"],
"libs-posix": ["pq"],
"libs-windows": ["libpq"],
"copyFiles-windows-x86": [ "libs/win32/libpq.dll", "libs/win32/intl.dll" ],
"sourceFiles-windows-x86" : [ "libs/win32/libpq.lib" ]
}
]
}