1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
link_args = []
if host_machine.system() == 'windows' and meson.get_compiler('c').get_id() == 'gcc'
# identifies mingw
link_args += '-Wl,--add-stdcall-alias'
endif
quantize_simd_libs = []
if config_h.get('HAVE_SSE2')
sse2_flag = (cc.get_argument_syntax() == 'msvc') ? ['/arch:SSE2'] : ['-msse2']
quantize_sse = static_library('quantize_sse', 'quantize_sse.c',
include_directories: ['..', '../include'],
c_args: c_args + sse2_flag,
gnu_symbol_visibility: 'hidden'
)
quantize_simd_libs += quantize_sse
endif
common_src = [
'bitstream.c',
'bitstream.h',
'blockswitch.c',
'blockswitch.h',
'channels.c',
'channels.h',
'coder.h',
'cpu_compute.c',
'cpu_compute.h',
'filtbank.c',
'filtbank.h',
'fft.c',
'fft.h',
'frame.c',
'frame.h',
'huff2.c',
'huff2.h',
'huffdata.c',
'huffdata.h',
'quantize.c',
'quantize.h',
'stereo.c',
'stereo.h',
'tns.c',
'tns.h',
'util.c',
'util.h',
]
libfaac = library('faac', common_src,
include_directories: ['..', '../include'],
c_args: c_args,
link_args: link_args,
dependencies: [ libm ],
link_with: quantize_simd_libs,
vs_module_defs: 'libfaac.def',
install: true,
version: '0.0.0',
gnu_symbol_visibility: 'hidden'
)
pkgconfig = import('pkgconfig')
pkgconfig.generate(
libfaac,
name: 'FAAC',
description: 'Freeware Advanced Audio Coder',
version: meson.project_version(),
filebase: 'faac'
)
|