mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
Make the FFT Anaylsis optional and disabled by default until further discussion.
git-svn-id: svn://localhost/trunk/ardour2@386 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
b6efb1fdd9
commit
1dee60510a
4 changed files with 41 additions and 5 deletions
|
|
@ -44,12 +44,14 @@ gtkardour.Merge ([
|
|||
libraries['xml'],
|
||||
libraries['soundtouch'],
|
||||
libraries['samplerate'],
|
||||
libraries['fftw3f'],
|
||||
libraries['jack'],
|
||||
libraries['glade2'],
|
||||
libraries['libglademm']
|
||||
])
|
||||
|
||||
if gtkardour['FFT_ANALYSIS']:
|
||||
gtkardour.Merge ([libraries['fftw3f']])
|
||||
|
||||
if gtkardour['VST']:
|
||||
gtkardour.Merge ([ libraries['fst']])
|
||||
|
||||
|
|
@ -176,6 +178,9 @@ utils.cc
|
|||
version.cc
|
||||
visual_time_axis.cc
|
||||
waveview.cc
|
||||
""")
|
||||
|
||||
fft_analysis_files=Split("""
|
||||
analysis_window.cc
|
||||
fft_graph.cc
|
||||
fft_result.cc
|
||||
|
|
@ -199,6 +204,10 @@ vst_files = [ 'vst_pluginui.cc' ]
|
|||
if env['VST']:
|
||||
extra_sources += vst_files
|
||||
|
||||
if env['FFT_ANALYSIS']:
|
||||
extra_sources += fft_analysis_files
|
||||
|
||||
|
||||
intl_files += extra_sources
|
||||
|
||||
gtkardour.Append(CCFLAGS="-D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue