- Timestamp:
- Apr 30, 2016, 3:17:24 AM (9 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 3fc5696
- Parents:
- ff3b27c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified wscript ¶
rff3b27c r06c6d7d 196 196 ctx.define('HAVE_C99_VARARGS_MACROS', 1) 197 197 198 # double precision mode198 # show a message about enable_double status 199 199 if (ctx.options.enable_double == True): 200 ctx.define('HAVE_AUBIO_DOUBLE', 1) 201 else: 202 ctx.define('HAVE_AUBIO_DOUBLE', 0) 200 ctx.msg('Checking for size of smpl_t', 'double') 201 ctx.msg('Checking for size of lsmp_t', 'long double') 202 else: 203 ctx.msg('Checking for size of smpl_t', 'float') 204 ctx.msg('Checking for size of lsmp_t', 'double') 203 205 204 206 # optionally use complex.h 205 207 if (ctx.options.enable_complex == True): 206 208 ctx.check(header_name='complex.h') 209 else: 210 ctx.msg('Checking if complex.h is enabled', 'no') 207 211 208 212 # check for fftw3 … … 294 298 ctx.write_config_header('src/config.h') 295 299 300 # the following defines will be passed as arguments to the compiler 301 # instead of being written to src/config.h 302 296 303 # add some defines used in examples 297 304 ctx.define('AUBIO_PREFIX', ctx.env['PREFIX']) 298 305 ctx.define('PACKAGE', APPNAME) 306 307 # double precision mode 308 if (ctx.options.enable_double == True): 309 ctx.define('HAVE_AUBIO_DOUBLE', 1) 299 310 300 311 if (ctx.options.enable_docs != False):
Note: See TracChangeset
for help on using the changeset viewer.