mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 09:27:03 +00:00
16 lines
239 B
Python
16 lines
239 B
Python
import os
|
|
|
|
NAME = 'alarm_speech'
|
|
|
|
uwsgi_os = os.uname()[0]
|
|
|
|
LDFLAGS = []
|
|
if uwsgi_os == "Darwin":
|
|
CFLAGS = []
|
|
LIBS = ['-framework appkit']
|
|
else:
|
|
CFLAGS = ['-I /usr/include/GNUstep']
|
|
LIBS = []
|
|
|
|
GCC_LIST = ['alarm_speech.m']
|