mirror of https://github.com/adamdruppe/arsd.git
add db libs (dub sux btw, dmd knows from the source itself!)
This commit is contained in:
parent
661df66a5d
commit
d8720892c8
6
dub.json
6
dub.json
|
@ -95,6 +95,8 @@
|
|||
"description": "MySQL client library. Wraps the official C library with my database.d interface.",
|
||||
"targetType": "sourceLibrary",
|
||||
"dependencies": {"arsd-official:database_base":"*"},
|
||||
"libs-posix": ["mysqlclient"],
|
||||
"libs-windows": ["libmysql"],
|
||||
"sourceFiles": ["mysql.d"]
|
||||
},
|
||||
{
|
||||
|
@ -102,6 +104,7 @@
|
|||
"description": "Postgresql client library. Wraps the libpq C library with my database.d interface.",
|
||||
"targetType": "sourceLibrary",
|
||||
"dependencies": {"arsd-official:database_base":"*"},
|
||||
"libs": ["pq"],
|
||||
"sourceFiles": ["postgres.d"]
|
||||
},
|
||||
|
||||
|
@ -110,6 +113,8 @@
|
|||
"description": "sqlite wrapper. Wraps the official C library with my database.d interface.",
|
||||
"targetType": "sourceLibrary",
|
||||
"dependencies": {"arsd-official:database_base":"*"},
|
||||
"libs": ["sqlite3"],
|
||||
"libs-posix": ["dl"],
|
||||
"sourceFiles": ["sqlite.d"]
|
||||
},
|
||||
|
||||
|
@ -118,6 +123,7 @@
|
|||
"description": "Microsoft SQL Server client library. Wraps the official ODBC library with my database.d interface.",
|
||||
"targetType": "sourceLibrary",
|
||||
"dependencies": {"arsd-official:database_base":"*"},
|
||||
"libs-windows": ["odbc32"],
|
||||
"sourceFiles": ["mssql.d"]
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue