File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 31
31
'checks.cc' )))
32
32
33
33
define_macros = []
34
+ extra_compile_args = []
34
35
35
36
if sys .platform .startswith ('win' ):
36
37
define_macros .extend ([('_WIN32' , None ), ('WEBRTC_WIN' , None )])
37
38
else :
38
39
define_macros .extend ([('WEBRTC_POSIX' , None ), ])
40
+ extra_compile_args .extend (['-std=c++11' ])
39
41
40
42
module = Extension ('_webrtcvad' ,
41
43
define_macros = define_macros ,
44
+ extra_compile_args = extra_compile_args ,
42
45
sources = c_sources ,
43
46
include_dirs = ['cbits' ])
44
47
83
86
'Programming Language :: Python :: 3.3' ,
84
87
'Programming Language :: Python :: 3.4' ,
85
88
'Programming Language :: Python :: 3.5' ,
89
+ 'Programming Language :: Python :: 3.6' ,
90
+ 'Programming Language :: Python :: 3.7' ,
86
91
],
87
92
keywords = 'speechrecognition asr voiceactivitydetection vad webrtc' ,
88
93
ext_modules = [module ],
You can’t perform that action at this time.
0 commit comments