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
68 lines (68 loc) · 2.51 KB
/
dub.json
File metadata and controls
68 lines (68 loc) · 2.51 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
{
"name": "ddbc",
"description": "DB Connector for D language, similar to JDBC (mysql, sqlite, postgresql)",
"authors": ["Vadim Lopatin"],
"homepage": "https://github.com/buggins/ddbc",
"license": "Boost Software License (BSL 1.0)",
"targetPath": "lib",
"targetType": "staticLibrary",
"systemDependencies": "Depending on configuration: PostgreSQL and/or SQLite v3",
"configurations": [
{
"name": "full",
"versions": ["USE_MYSQL", "USE_SQLITE", "USE_PGSQL"],
"dependencies": {
"mysql-native": ">=0.1.6",
"derelict-pq": "~>2.0.2"
},
"libs-posix": ["sqlite3"],
"libs-windows": ["sqlite3"],
"copyFiles-windows-x86": [ "libs/win32/sqlite3.dll", "libs/win32/libpq.dll"],
"copyFiles-windows-x86_64": [ "libs/win64/libpq.dll", "libs/win64/sqlite3.dll"],
"sourceFiles-windows-x86_64" : [ "libs/win64/sqlite3.lib" ],
"sourceFiles-windows-x86" : [ "libs/win32/sqlite3.lib"]
},
{
"name": "MySQL",
"versions": ["USE_MYSQL"],
"dependencies": {
"mysql-native": ">=0.1.6"
}
},
{
"name": "SQLite",
"versions": ["USE_SQLITE"],
"libs-posix": ["sqlite3"],
"libs-windows": ["sqlite3"],
"copyFiles-windows-x86": [ "libs/win32/sqlite3.dll" ],
"copyFiles-windows-x86_64": [ "libs/win64/sqlite3.dll" ],
"sourceFiles-windows-x86_64" : [ "libs/win64/sqlite3.lib" ],
"sourceFiles-windows-x86" : [ "libs/win32/sqlite3.lib" ]
},
{
"name": "PGSQL",
"versions": ["USE_PGSQL"],
"copyFiles-windows-x86": [ "libs/win32/libpq.dll"],
"copyFiles-windows-x86_64": [ "libs/win64/libpq.dll"],
"dependencies": {
"derelict-pq": "~>2.0.2"
}
},
{
"name": "API"
},
{
"name": "test",
"sourcePaths" : ["test/ddbctest"],
"mainSourceFile": "test/ddbctest/main.d",
"targetName": "ddbc-tests",
"targetPath": "test",
"targetType": "executable",
"versions": ["USE_SQLITE"],
"libs-posix": ["sqlite3"],
"libs-windows": ["sqlite3"],
"copyFiles-windows-x86": [ "libs/win32/sqlite3.dll" ],
"sourceFiles-windows-x86" : [ "libs/win32/sqlite3.lib" ]
}
]
}