summaryrefslogtreecommitdiff
path: root/libs/audiographer/wscript
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-10 15:10:40 +0100
committerRobin Gareus <robin@gareus.org>2016-02-10 15:11:45 +0100
commit6c8a062be9a0e34ee0f60ad16499827b5fdaa627 (patch)
treed65c258d8fc59dcf263664e5ecca24b19ca633d2 /libs/audiographer/wscript
parent7c3d3031dc9ca679d65424ffe7b9bd221a32b853 (diff)
move export-analysis implementation into cc-file.
lib/libfftw3f.a(apiplan.o):apiplan.c:(.text+0x430): multiple definition of `fftwf_destroy_plan' This is because static symbols in a .dll have no fixed address and are mapped when loading the dll. Static functions in .exe do have a fixed address. With a header-only implementation the functions are provided libardour.dll and ardour.exe
Diffstat (limited to 'libs/audiographer/wscript')
-rw-r--r--libs/audiographer/wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/audiographer/wscript b/libs/audiographer/wscript
index aef85f985c..e70f1234a9 100644
--- a/libs/audiographer/wscript
+++ b/libs/audiographer/wscript
@@ -64,6 +64,7 @@ def build(bld):
'src/general/sample_format_converter.cc',
'src/routines.cc',
'src/debug_utils.cc',
+ 'src/general/analyser.cc',
'src/general/broadcast_info.cc',
'src/general/normalizer.cc'
]
@@ -83,7 +84,7 @@ def build(bld):
audiographer.name = 'libaudiographer'
audiographer.target = 'audiographer'
audiographer.export_includes = ['.', './src']
- audiographer.includes = ['.', './src']
+ audiographer.includes = ['.', './src','../ardour','../timecode','../evoral']
audiographer.uselib = 'GLIB GLIBMM GTHREAD SAMPLERATE SNDFILE FFTW3F'
audiographer.use = 'libpbd'
audiographer.vnum = AUDIOGRAPHER_LIB_VERSION