mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 02:54:29 +08:00
black
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
version: 2.0.0
|
version: 2.0.0
|
||||||
version_info: (2,0,0)
|
version_info: (2,0,0,'final',0)
|
||||||
description: Python interface to MySQL
|
description: Python interface to MySQL
|
||||||
author: Inada Naoki
|
author: Inada Naoki
|
||||||
author_email: songofacandy@gmail.com
|
author_email: songofacandy@gmail.com
|
||||||
|
@ -18,7 +18,17 @@ def get_config():
|
|||||||
vcversion = int(get_build_version())
|
vcversion = int(get_build_version())
|
||||||
if client == "mariadbclient":
|
if client == "mariadbclient":
|
||||||
library_dirs = [os.path.join(connector, "lib", "mariadb")]
|
library_dirs = [os.path.join(connector, "lib", "mariadb")]
|
||||||
libraries = ["kernel32", "advapi32", "wsock32", "shlwapi", "Ws2_32", "crypt32", "secur32", "bcrypt", client]
|
libraries = [
|
||||||
|
"kernel32",
|
||||||
|
"advapi32",
|
||||||
|
"wsock32",
|
||||||
|
"shlwapi",
|
||||||
|
"Ws2_32",
|
||||||
|
"crypt32",
|
||||||
|
"secur32",
|
||||||
|
"bcrypt",
|
||||||
|
client,
|
||||||
|
]
|
||||||
include_dirs = [os.path.join(connector, "include", "mariadb")]
|
include_dirs = [os.path.join(connector, "include", "mariadb")]
|
||||||
else:
|
else:
|
||||||
library_dirs = [
|
library_dirs = [
|
||||||
|
Reference in New Issue
Block a user