mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-19 03:57:21 +00:00
12 lines
205 B
Python
12 lines
205 B
Python
from distutils import sysconfig
|
|
|
|
NAME = 'asyncio'
|
|
|
|
CFLAGS = [
|
|
'-I' + sysconfig.get_python_inc(),
|
|
'-I' + sysconfig.get_python_inc(plat_specific=True)
|
|
]
|
|
LDFLAGS = []
|
|
LIBS = []
|
|
GCC_LIST = ['asyncio']
|