source: wscript @ 986131d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since 986131d was 986131d, checked in by Eduard Müller <mueller.eduard@googlemail.com>, 7 years ago

Intel IPP support for aubio

See emuell/aubio/ intel_ipp2 for details please

  • Property mode set to 100644
File size: 24.1 KB
RevLine 
[5c411dc]1#! /usr/bin/python
[110ac90]2#
[21ee709]3# usage:
[46b00690]4#   $ python waf --help
5#
6# example:
7#   $ ./waf distclean configure build
[21ee709]8#
[46b00690]9# Note: aubio uses the waf build system, which relies on Python. Provided you
10# have Python installed, you do *not* need to install anything to build aubio.
11# For more info about waf, see http://code.google.com/p/waf/ .
[000b090]12
[004b431]13import sys
14
[000b090]15APPNAME = 'aubio'
[5820107]16
[b991cc1]17from this_version import *
[5820107]18
[255c4c8]19VERSION = get_aubio_version()
20LIB_VERSION = get_libaubio_version()
[e565c649]21
[46378b3]22top = '.'
23out = 'build'
[000b090]24
[6b14351]25def add_option_enable_disable(ctx, name, default = None,
26        help_str = None, help_disable_str = None):
[a93dab3]27    if help_str == None:
28        help_str = 'enable ' + name + ' support'
29    if help_disable_str == None:
30        help_disable_str = 'do not ' + help_str
31    ctx.add_option('--enable-' + name, action = 'store_true',
32            default = default,
33            dest = 'enable_' + name.replace('-','_'),
34            help = help_str)
35    ctx.add_option('--disable-' + name, action = 'store_false',
36            #default = default,
37            dest = 'enable_' + name.replace('-','_'),
38            help = help_disable_str )
[3819aca]39
[d41bc4d]40def options(ctx):
[b4ce693]41    ctx.add_option('--build-type', action = 'store',
42            default = "release",
43            choices = ('debug', 'release'),
44            dest = 'build_type',
[fb6a0ff]45            help = 'whether to compile with (--build-type=release) or without (--build-type=debug) '\
[b4ce693]46              ' compiler opimizations [default: release]')
[a93dab3]47    add_option_enable_disable(ctx, 'fftw3f', default = False,
48            help_str = 'compile with fftw3f instead of ooura (recommended)',
49            help_disable_str = 'do not compile with fftw3f')
50    add_option_enable_disable(ctx, 'fftw3', default = False,
51            help_str = 'compile with fftw3 instead of ooura',
52            help_disable_str = 'do not compile with fftw3')
[986131d]53    add_option_enable_disable(ctx, 'intelipp', default = None,
54            help_str = 'use Intel IPP libraries (auto)',
55            help_disable_str = 'do not use Intel IPP libraries')
[a93dab3]56    add_option_enable_disable(ctx, 'complex', default = False,
57            help_str ='compile with C99 complex',
58            help_disable_str = 'do not use C99 complex (default)' )
59    add_option_enable_disable(ctx, 'jack', default = None,
60            help_str = 'compile with jack (auto)',
61            help_disable_str = 'disable jack support')
62    add_option_enable_disable(ctx, 'sndfile', default = None,
63            help_str = 'compile with sndfile (auto)',
64            help_disable_str = 'disable sndfile')
65    add_option_enable_disable(ctx, 'avcodec', default = None,
66            help_str = 'compile with libavcodec (auto)',
67            help_disable_str = 'disable libavcodec')
68    add_option_enable_disable(ctx, 'samplerate', default = None,
69            help_str = 'compile with samplerate (auto)',
70            help_disable_str = 'disable samplerate')
71    add_option_enable_disable(ctx, 'memcpy', default = True,
72            help_str = 'use memcpy hacks (default)',
73            help_disable_str = 'do not use memcpy hacks')
74    add_option_enable_disable(ctx, 'double', default = False,
75            help_str = 'compile in double precision mode',
76            help_disable_str = 'compile in single precision mode (default)')
[a3de4be]77    add_option_enable_disable(ctx, 'fat', default = False,
78            help_str = 'build fat binaries (darwin only)',
79            help_disable_str = 'do not build fat binaries (default)')
[0309a22]80    add_option_enable_disable(ctx, 'accelerate', default = None,
81            help_str = 'use Accelerate framework (darwin only) (auto)',
82            help_disable_str = 'do not use Accelerate framework')
[cc81763]83    add_option_enable_disable(ctx, 'apple-audio', default = None,
84            help_str = 'use CoreFoundation (darwin only) (auto)',
85            help_disable_str = 'do not use CoreFoundation framework')
[f61ffb9]86    add_option_enable_disable(ctx, 'atlas', default = False,
87            help_str = 'use Atlas library (no)',
[f0ce36a1]88            help_disable_str = 'do not use Atlas library')
[f9a543e]89    add_option_enable_disable(ctx, 'wavread', default = True,
90            help_str = 'compile with source_wavread (default)',
91            help_disable_str = 'do not compile source_wavread')
92    add_option_enable_disable(ctx, 'wavwrite', default = True,
93            help_str = 'compile with source_wavwrite (default)',
94            help_disable_str = 'do not compile source_wavwrite')
[a93dab3]95
[a33d406]96    add_option_enable_disable(ctx, 'docs', default = None,
97            help_str = 'build documentation (auto)',
98            help_disable_str = 'do not build documentation')
99
[a93dab3]100    ctx.add_option('--with-target-platform', type='string',
101            help='set target platform for cross-compilation', dest='target_platform')
102
103    ctx.load('compiler_c')
104    ctx.load('waf_unit_test')
105    ctx.load('gnu_dirs')
[000b090]106
[d41bc4d]107def configure(ctx):
[a93dab3]108    from waflib import Options
109    ctx.load('compiler_c')
110    ctx.load('waf_unit_test')
111    ctx.load('gnu_dirs')
[06dba46]112
[fc5e189]113    target_platform = sys.platform
114    if ctx.options.target_platform:
115        target_platform = ctx.options.target_platform
116
117
118    if target_platform=='emscripten':
119        # need to force spaces between flag -o and path
120        # inspired from :
121        # https://github.com/waf-project/waf/blob/master/waflib/extras/c_emscripten.py (#1885)
122        # (OSX /emscripten 1.37.9)
123        ctx.env.CC_TGT_F            = ['-c', '-o', '']
124        ctx.env.CCLNK_TGT_F         = ['-o', '']
[bef979a]125    # check for common headers
126    ctx.check(header_name='stdlib.h')
127    ctx.check(header_name='stdio.h')
128    ctx.check(header_name='math.h')
129    ctx.check(header_name='string.h')
130    ctx.check(header_name='limits.h')
[f334300]131    ctx.check(header_name='stdarg.h')
[d746ef8]132    ctx.check(header_name='getopt.h', mandatory = False)
[06cf47d]133    ctx.check(header_name='unistd.h', mandatory = False)
[bef979a]134
[a93dab3]135    ctx.env['DEST_OS'] = target_platform
136
[b4ce693]137    if ctx.options.build_type == "debug":
138        ctx.define('DEBUG', 1)
139    else:
140        ctx.define('NDEBUG', 1)
[578d3a2]141
[ae36035]142    if ctx.env.CC_NAME != 'msvc':
[c04346d]143        if ctx.options.build_type == "debug":
144            # no optimization in debug mode
[a6ba5d9f]145            ctx.env.prepend_value('CFLAGS', ['-O0'])
146        else:
[1539d4b]147            if target_platform == 'emscripten':
148                # -Oz for small js file generation
149                ctx.env.prepend_value('CFLAGS', ['-Oz'])
150            else:
[deaf39e]151                # default to -O2 in release mode
152                ctx.env.prepend_value('CFLAGS', ['-O2'])
[a6ba5d9f]153        # enable debug symbols and configure warnings
154        ctx.env.prepend_value('CFLAGS', ['-g', '-Wall', '-Wextra'])
[a341685]155    else:
[b4ce693]156        # enable debug symbols
157        ctx.env.CFLAGS += ['/Z7', '/FS']
158        ctx.env.LINKFLAGS += ['/DEBUG', '/INCREMENTAL:NO']
159        # configure warnings
160        ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS']
[986131d]161        # ignore "possible loss of data" warnings
162        ctx.env.CFLAGS += ['/wd4305', '/wd4244', '/wd4245', '/wd4267']
163        # ignore "unreferenced formal parameter" warnings
164        ctx.env.CFLAGS += ['/wd4100']
[578d3a2]165        # set optimization level and runtime libs
[b4ce693]166        if (ctx.options.build_type == "release"):
167            ctx.env.CFLAGS += ['/Ox']
168            ctx.env.CFLAGS += ['/MD']
169        else:
170            assert(ctx.options.build_type == "debug")
171            ctx.env.CFLAGS += ['/MDd']
[578d3a2]172
[70a304e]173    ctx.check_cc(lib='m', uselib_store='M', mandatory=False)
174
[06dba46]175    if target_platform not in ['win32', 'win64']:
176        ctx.env.CFLAGS += ['-fPIC']
177    else:
178        ctx.define('HAVE_WIN_HACKS', 1)
179        ctx.env['cshlib_PATTERN'] = 'lib%s.dll'
[a93dab3]180
[a3de4be]181    if target_platform == 'darwin' and ctx.options.enable_fat:
[a93dab3]182        ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
183        ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
[da1709f]184        MINSDKVER="10.4"
185        ctx.env.CFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
186        ctx.env.LINKFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
[9209c79]187
188    if target_platform in [ 'darwin', 'ios', 'iosimulator']:
[cc81763]189        if (ctx.options.enable_apple_audio != False):
190            ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
191            ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1)
192            ctx.define('HAVE_SINK_APPLE_AUDIO', 1)
[f61ffb9]193            ctx.msg('Checking for AudioToolbox.framework', 'yes')
194        else:
195            ctx.msg('Checking for AudioToolbox.framework', 'no (disabled)', color = 'YELLOW')
[0309a22]196        if (ctx.options.enable_accelerate != False):
197            ctx.define('HAVE_ACCELERATE', 1)
198            ctx.env.FRAMEWORK += ['Accelerate']
[f61ffb9]199            ctx.msg('Checking for Accelerate framework', 'yes')
200        else:
[488381e]201            ctx.msg('Checking for Accelerate framework', 'no (disabled)', color = 'YELLOW')
[a93dab3]202
203    if target_platform in [ 'ios', 'iosimulator' ]:
204        MINSDKVER="6.1"
205        ctx.env.CFLAGS += ['-std=c99']
[536bf70]206        if (ctx.options.enable_apple_audio != False):
[cc81763]207            ctx.define('HAVE_AUDIO_UNIT', 1)
208            #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
[a93dab3]209        if target_platform == 'ios':
210            DEVROOT = "/Applications/Xcode.app/Contents"
211            DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer"
[e11ce489]212            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals()
[94b16497]213            ctx.env.CFLAGS += [ '-fembed-bitcode' ]
[7aa4aaa]214            ctx.env.CFLAGS += [ '-arch', 'arm64' ]
[a93dab3]215            ctx.env.CFLAGS += [ '-arch', 'armv7' ]
216            ctx.env.CFLAGS += [ '-arch', 'armv7s' ]
[7aa4aaa]217            ctx.env.LINKFLAGS += [ '-arch', 'arm64' ]
[a93dab3]218            ctx.env.LINKFLAGS += ['-arch', 'armv7']
219            ctx.env.LINKFLAGS += ['-arch', 'armv7s']
220            ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
221            ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
222        else:
223            DEVROOT = "/Applications/Xcode.app/Contents"
224            DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer"
[e11ce489]225            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals()
[a93dab3]226            ctx.env.CFLAGS += [ '-arch', 'i386' ]
227            ctx.env.CFLAGS += [ '-arch', 'x86_64' ]
228            ctx.env.LINKFLAGS += ['-arch', 'i386']
229            ctx.env.LINKFLAGS += ['-arch', 'x86_64']
230            ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
231            ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
232        ctx.env.CFLAGS += [ '-isysroot' , SDKROOT]
233        ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT]
234
[fb5838a]235    if target_platform == 'emscripten':
236        import os.path
237        ctx.env.CFLAGS += [ '-I' + os.path.join(os.environ['EMSCRIPTEN'], 'system', 'include') ]
[023e4b2]238       
239        if ctx.options.build_type == "debug":
240            ctx.env.cshlib_PATTERN = '%s.js'
[6421221]241            ctx.env.LINKFLAGS += ['-s','ASSERTIONS=2']
242            ctx.env.LINKFLAGS += ['-s','SAFE_HEAP=1']
243            ctx.env.LINKFLAGS += ['-s','ALIASING_FUNCTION_POINTERS=0']
244            ctx.env.LINKFLAGS += ['-O0']
[023e4b2]245        else:
246            ctx.env.LINKFLAGS += ['-Oz']
247            ctx.env.cshlib_PATTERN = '%s.min.js'
[4b084a9]248
[342eb13e]249        # doesnt ship file system support in lib
[4b084a9]250        ctx.env.LINKFLAGS_cshlib += ['-s', 'NO_FILESYSTEM=1']
251        # put memory file inside generated js files for easier portability
252        ctx.env.LINKFLAGS += ['--memory-init-file', '0']
[fb5838a]253        ctx.env.cprogram_PATTERN = "%s.js"
[e717fae]254        ctx.env.cstlib_PATTERN = '%s.a'
[4b084a9]255
[342eb13e]256        # tell emscripten functions we want to expose
[4b084a9]257        from python.lib.gen_external import get_c_declarations, get_cpp_objects_from_c_declarations, get_all_func_names_from_lib, generate_lib_from_c_declarations
258        c_decls = get_c_declarations(usedouble=False)  # emscripten can't use double
259        objects = get_cpp_objects_from_c_declarations(c_decls)
260        # ensure that aubio structs are exported
261        objects += ['fvec_t', 'cvec_t', 'fmat_t']
262        lib = generate_lib_from_c_declarations(objects, c_decls)
263        exported_funcnames = get_all_func_names_from_lib(lib)
264        c_mangled_names = ['_' + s for s in exported_funcnames]
265        ctx.env.LINKFLAGS_cshlib += ['-s', 'EXPORTED_FUNCTIONS=%s' % c_mangled_names]
266
267    if (ctx.options.enable_atlas != True):
268        ctx.options.enable_atlas = False
[fb5838a]269
[a93dab3]270    # check support for C99 __VA_ARGS__ macros
271    check_c99_varargs = '''
[0318cc1]272#include <stdio.h>
273#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
274'''
[a93dab3]275
276    if ctx.check_cc(fragment = check_c99_varargs,
277            type='cstlib',
[413d4bf]278            msg = 'Checking for C99 __VA_ARGS__ macro',
279            mandatory = False):
[a93dab3]280        ctx.define('HAVE_C99_VARARGS_MACROS', 1)
281
[06c6d7d]282    # show a message about enable_double status
[a93dab3]283    if (ctx.options.enable_double == True):
[06c6d7d]284        ctx.msg('Checking for size of smpl_t', 'double')
285        ctx.msg('Checking for size of lsmp_t', 'long double')
[a93dab3]286    else:
[06c6d7d]287        ctx.msg('Checking for size of smpl_t', 'float')
288        ctx.msg('Checking for size of lsmp_t', 'double')
[a93dab3]289
290    # optionally use complex.h
291    if (ctx.options.enable_complex == True):
292        ctx.check(header_name='complex.h')
[06c6d7d]293    else:
294        ctx.msg('Checking if complex.h is enabled', 'no')
[986131d]295   
296    # check for Intel IPP
297    if (ctx.options.enable_intelipp != False):
298        if (ctx.check(header_name=['ippcore.h', 'ippvm.h', 'ipps.h'], mandatory = False) and
299            ctx.check(lib=['ippcore', 'ippvm', 'ipps'], uselib_store='INTEL_IPP', mandatory = False)):
300            ctx.msg('Checking if Intel IPP is available', 'yes')
301            ctx.define('HAVE_INTEL_IPP', 1)
302            if ctx.env.CC_NAME == 'msvc':
303                # force linking multi-threaded static IPP libraries on Windows with msvc
304                ctx.define('_IPP_SEQUENTIAL_STATIC', 1)
305        else:
306            ctx.msg('Checking if Intel IPP is available', 'no')
307   
[a93dab3]308    # check for fftw3
309    if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
310        # one of fftwf or fftw3f
311        if (ctx.options.enable_fftw3f != False):
[badb525]312            ctx.check_cfg(package = 'fftw3f',
313                    args = '--cflags --libs fftw3f >= 3.0.0',
[795fcd9]314                    mandatory = ctx.options.enable_fftw3f)
[a93dab3]315            if (ctx.options.enable_double == True):
[795fcd9]316                ctx.msg('Warning',
317                        'fftw3f enabled, but compiling in double precision!')
[a93dab3]318        else:
[795fcd9]319            # fftw3f disabled, take most sensible one according to
320            # enable_double
[a93dab3]321            if (ctx.options.enable_double == True):
[badb525]322                ctx.check_cfg(package = 'fftw3',
323                        args = '--cflags --libs fftw3 >= 3.0.0.',
324                        mandatory = ctx.options.enable_fftw3)
[a93dab3]325            else:
[badb525]326                ctx.check_cfg(package = 'fftw3f',
327                        args = '--cflags --libs fftw3f >= 3.0.0',
[795fcd9]328                        mandatory = ctx.options.enable_fftw3)
[a93dab3]329        ctx.define('HAVE_FFTW3', 1)
330
[986131d]331    # fftw not enabled, use vDSP, intelIPP or ooura
[a93dab3]332    if 'HAVE_FFTW3F' in ctx.env.define_key:
333        ctx.msg('Checking for FFT implementation', 'fftw3f')
334    elif 'HAVE_FFTW3' in ctx.env.define_key:
335        ctx.msg('Checking for FFT implementation', 'fftw3')
336    elif 'HAVE_ACCELERATE' in ctx.env.define_key:
337        ctx.msg('Checking for FFT implementation', 'vDSP')
[986131d]338    elif 'HAVE_INTEL_IPP' in ctx.env.define_key:
339        ctx.msg('Checking for FFT implementation', 'Intel IPP')
[36f954a]340    else:
[a93dab3]341        ctx.msg('Checking for FFT implementation', 'ooura')
342
343    # check for libsndfile
344    if (ctx.options.enable_sndfile != False):
[badb525]345        ctx.check_cfg(package = 'sndfile',
346                args = '--cflags --libs sndfile >= 1.0.4',
[795fcd9]347                mandatory = ctx.options.enable_sndfile)
[a93dab3]348
349    # check for libsamplerate
[8be88e7]350    if (ctx.options.enable_double):
351        if (ctx.options.enable_samplerate):
352            ctx.fatal("Could not compile aubio in double precision mode with libsamplerate")
353        else:
354            ctx.options.enable_samplerate = False
355            ctx.msg('Checking if using samplerate', 'no (disabled in double precision mode)',
356                    color = 'YELLOW')
[a93dab3]357    if (ctx.options.enable_samplerate != False):
[badb525]358        ctx.check_cfg(package = 'samplerate',
359                args = '--cflags --libs samplerate >= 0.0.15',
[795fcd9]360                mandatory = ctx.options.enable_samplerate)
[a93dab3]361
362    # check for jack
363    if (ctx.options.enable_jack != False):
[eb99982]364        ctx.check_cfg(package = 'jack',
[795fcd9]365                args = '--cflags --libs',
366                mandatory = ctx.options.enable_jack)
[a93dab3]367
368    # check for libav
369    if (ctx.options.enable_avcodec != False):
[badb525]370        ctx.check_cfg(package = 'libavcodec',
371                args = '--cflags --libs libavcodec >= 54.35.0',
372                uselib_store = 'AVCODEC',
[795fcd9]373                mandatory = ctx.options.enable_avcodec)
[badb525]374        ctx.check_cfg(package = 'libavformat',
375                args = '--cflags --libs libavformat >= 52.3.0',
376                uselib_store = 'AVFORMAT',
[795fcd9]377                mandatory = ctx.options.enable_avcodec)
[badb525]378        ctx.check_cfg(package = 'libavutil',
379                args = '--cflags --libs libavutil >= 52.3.0',
380                uselib_store = 'AVUTIL',
[795fcd9]381                mandatory = ctx.options.enable_avcodec)
[badb525]382        ctx.check_cfg(package = 'libswresample',
[65b5381]383                args = '--cflags --libs libswresample >= 1.2.0',
[badb525]384                uselib_store = 'SWRESAMPLE',
[d82e7a4]385                mandatory = False)
386        if 'HAVE_SWRESAMPLE' not in ctx.env:
[badb525]387            ctx.check_cfg(package = 'libavresample',
388                    args = '--cflags --libs libavresample >= 1.0.1',
389                    uselib_store = 'AVRESAMPLE',
[d82e7a4]390                    mandatory = False)
391
392        msg_check = 'Checking for all libav libraries'
393        if 'HAVE_AVCODEC' not in ctx.env:
394            ctx.msg(msg_check, 'not found (missing avcodec)', color = 'YELLOW')
395        elif 'HAVE_AVFORMAT' not in ctx.env:
396            ctx.msg(msg_check, 'not found (missing avformat)', color = 'YELLOW')
397        elif 'HAVE_AVUTIL' not in ctx.env:
398            ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW')
399        elif 'HAVE_SWRESAMPLE' not in ctx.env and 'HAVE_AVRESAMPLE' not in ctx.env:
[c3b3b84]400            resample_missing = 'not found (avresample or swresample required)'
401            ctx.msg(msg_check, resample_missing, color = 'YELLOW')
[549928e]402        else:
[d82e7a4]403            ctx.msg(msg_check, 'yes')
404            if 'HAVE_SWRESAMPLE' in ctx.env:
405                ctx.define('HAVE_SWRESAMPLE', 1)
406            elif 'HAVE_AVRESAMPLE' in ctx.env:
407                ctx.define('HAVE_AVRESAMPLE', 1)
408            ctx.define('HAVE_LIBAV', 1)
[a93dab3]409
[f9a543e]410    if (ctx.options.enable_wavread != False):
411        ctx.define('HAVE_WAVREAD', 1)
412    ctx.msg('Checking if using source_wavread', ctx.options.enable_wavread and 'yes' or 'no')
413    if (ctx.options.enable_wavwrite!= False):
414        ctx.define('HAVE_WAVWRITE', 1)
415    ctx.msg('Checking if using sink_wavwrite', ctx.options.enable_wavwrite and 'yes' or 'no')
[5158c22]416
[f0ce36a1]417    # use ATLAS
418    if (ctx.options.enable_atlas != False):
419        ctx.check(header_name = 'atlas/cblas.h', mandatory = ctx.options.enable_atlas)
420        #ctx.check(lib = 'lapack', uselib_store = 'LAPACK', mandatory = ctx.options.enable_atlas)
421        ctx.check(lib = 'cblas', uselib_store = 'BLAS', mandatory = ctx.options.enable_atlas)
422
[a93dab3]423    # use memcpy hacks
424    if (ctx.options.enable_memcpy == True):
425        ctx.define('HAVE_MEMCPY_HACKS', 1)
426
427    # write configuration header
428    ctx.write_config_header('src/config.h')
429
[06c6d7d]430    # the following defines will be passed as arguments to the compiler
431    # instead of being written to src/config.h
[1910fed]432    ctx.define('HAVE_CONFIG_H', 1)
[06c6d7d]433
[a93dab3]434    # add some defines used in examples
435    ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
436    ctx.define('PACKAGE', APPNAME)
437
[06c6d7d]438    # double precision mode
439    if (ctx.options.enable_double == True):
440        ctx.define('HAVE_AUBIO_DOUBLE', 1)
441
[a33d406]442    if (ctx.options.enable_docs != False):
443        # check if txt2man is installed, optional
444        try:
445          ctx.find_program('txt2man', var='TXT2MAN')
446        except ctx.errors.ConfigurationError:
447          ctx.to_log('txt2man was not found (ignoring)')
[000b090]448
[a33d406]449        # check if doxygen is installed, optional
450        try:
451          ctx.find_program('doxygen', var='DOXYGEN')
452        except ctx.errors.ConfigurationError:
453          ctx.to_log('doxygen was not found (ignoring)')
[52a25e5]454
[7800335]455        # check if sphinx-build is installed, optional
456        try:
457          ctx.find_program('sphinx-build', var='SPHINX')
458        except ctx.errors.ConfigurationError:
459          ctx.to_log('sphinx-build was not found (ignoring)')
460
[6ed0f4e]461def build(bld):
[985a5d1]462    bld.env['VERSION'] = VERSION
463    bld.env['LIB_VERSION'] = LIB_VERSION
464
[7b38f3f]465    # main source
[985a5d1]466    bld.recurse('src')
[7b38f3f]467
468    # add sub directories
[985a5d1]469    if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
470        bld.recurse('examples')
471        bld.recurse('tests')
472
[7b38f3f]473    # pkg-config template
[985a5d1]474    bld( source = 'aubio.pc.in' )
475
[7b38f3f]476    # documentation
477    txt2man(bld)
478    doxygen(bld)
479    sphinx(bld)
480
481def txt2man(bld):
[52a25e5]482    # build manpages from txt files using txt2man
[403e9dd]483    if bld.env['TXT2MAN']:
[985a5d1]484        from waflib import TaskGen
485        if 'MANDIR' not in bld.env:
[641e533]486            bld.env['MANDIR'] = bld.env['DATAROOTDIR'] + '/man'
[e3b77e8]487        bld.env.VERSION = VERSION
[403e9dd]488        rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`'
489        rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}'
490        rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual'
491        rule_str += ' -s 1 ${SRC} > ${TGT}'
[985a5d1]492        TaskGen.declare_chain(
[403e9dd]493                name      = 'txt2man',
494                rule      = rule_str,
495                ext_in    = '.txt',
[985a5d1]496                ext_out   = '.1',
497                reentrant = False,
498                install_path =  '${MANDIR}/man1',
499                )
[403e9dd]500        bld( source = bld.path.ant_glob('doc/*.txt') )
[985a5d1]501
[7b38f3f]502def doxygen(bld):
[52a25e5]503    # build documentation from source files using doxygen
504    if bld.env['DOXYGEN']:
[a24a84e]505        bld.env.VERSION = VERSION
506        rule = '( cat ${SRC} && echo PROJECT_NUMBER=${VERSION}; )'
507        rule += ' | doxygen - > /dev/null'
508        bld( name = 'doxygen', rule = rule,
[52a25e5]509                source = 'doc/web.cfg',
[41dd34e]510                target = '../doc/web/html/index.html',
[7f35041]511                cwd = 'doc')
[641e533]512        bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc',
[52a25e5]513                bld.path.ant_glob('doc/web/html/**'),
514                cwd = bld.path.find_dir ('doc/web'),
515                relative_trick = True)
[7800335]516
[7b38f3f]517def sphinx(bld):
[7800335]518    # build documentation from source files using sphinx-build
[5a19f33]519    # note: build in ../doc/_build/html, otherwise waf wont install unsigned files
[7800335]520    if bld.env['SPHINX']:
[e3b77e8]521        bld.env.VERSION = VERSION
[5a19f33]522        bld( name = 'sphinx',
[e3b77e8]523                rule = '${SPHINX} -b html -D release=${VERSION} -D version=${VERSION} -a -q `dirname ${SRC}` `dirname ${TGT}`',
[7b38f3f]524                source = 'doc/conf.py',
[5a19f33]525                target = '../doc/_build/html/index.html')
[641e533]526        bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc/sphinx',
[7800335]527                bld.path.ant_glob('doc/_build/html/**'),
[5a19f33]528                cwd = bld.path.find_dir('doc/_build/html'),
[7800335]529                relative_trick = True)
[50d56cc]530
[7b38f3f]531# register the previous rules as build rules
532from waflib.Build import BuildContext
533
534class build_txt2man(BuildContext):
535    cmd = 'txt2man'
536    fun = 'txt2man'
537
538class build_manpages(BuildContext):
539    cmd = 'manpages'
540    fun = 'txt2man'
541
542class build_sphinx(BuildContext):
543    cmd = 'sphinx'
544    fun = 'sphinx'
545
546class build_doxygen(BuildContext):
547    cmd = 'doxygen'
548    fun = 'doxygen'
549
[30250de]550def shutdown(bld):
[985a5d1]551    from waflib import Logs
552    if bld.options.target_platform in ['ios', 'iosimulator']:
553        msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform
554        Logs.pprint('RED', msg)
555        msg ='   Paul Brossier <piem@aubio.org>'
556        Logs.pprint('RED', msg)
[b4d1ba1]557
558def dist(ctx):
[3388e1a]559    ctx.excl  = ' **/.waf* **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w* **/.git*'
[b4d1ba1]560    ctx.excl += ' **/build/*'
[99d8cbb]561    ctx.excl += ' doc/_build'
562    ctx.excl += ' python/demos_*'
[22dd9dc]563    ctx.excl += ' **/python/gen **/python/build **/python/dist'
[981e7082]564    ctx.excl += ' **/python/ext/config.h'
[99d8cbb]565    ctx.excl += ' **/python/lib/aubio/_aubio.so'
566    ctx.excl += ' **.egg-info'
[22dd9dc]567    ctx.excl += ' **/**.zip **/**.tar.bz2'
[7b38f3f]568    ctx.excl += ' **.tar.bz2'
[a93dab3]569    ctx.excl += ' **/doc/full/* **/doc/web/*'
[e57a7d4]570    ctx.excl += ' **/doc/full.cfg'
[b4d1ba1]571    ctx.excl += ' **/python/*.db'
572    ctx.excl += ' **/python.old/*'
[981e7082]573    ctx.excl += ' **/python/*/*.old'
[172b1fe]574    ctx.excl += ' **/python/tests/sounds'
[7b2d740]575    ctx.excl += ' **/**.asc'
[5e544f1]576    ctx.excl += ' **/dist*'
[73aac2a]577    ctx.excl += ' **/.DS_Store'
578    ctx.excl += ' **/.travis.yml'
[5e544f1]579    ctx.excl += ' **/.landscape.yml'
580    ctx.excl += ' **/.appveyor.yml'
Note: See TracBrowser for help on using the repository browser.