mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-26 03:10:45 +08:00

* Completely rewrite setup.py * Make pytimes the only time implementation, moved into times
29 lines
733 B
INI
29 lines
733 B
INI
# Options:
|
|
#
|
|
# embedded: link against the embedded server library
|
|
# threadsafe: use the threadsafe client
|
|
# static: link against a static library (probably required for embedded)
|
|
|
|
[options]
|
|
embedded = False
|
|
threadsafe = True
|
|
static = False
|
|
|
|
# Use the compiler section to add additional options for the extension build.
|
|
# In particular, if your platform does not support mysql_config (like
|
|
# Windows), you will have to set most of these. Note that each entry is split
|
|
# into a list so that each line is one item.
|
|
|
|
[compiler]
|
|
#mysql_root: /usr/local/mysql
|
|
#library_dirs: %(mysql_root)s/lib
|
|
#include_dirs: %(mysql_root)s/include
|
|
#libraries: mysqlclient
|
|
# zlib
|
|
# msvcrt
|
|
# libcmt
|
|
# wsock32
|
|
# advapi32
|
|
#extra_compile_args:
|
|
#extra_objects:
|