From 466af2a80bd4d30b46074c9da05f26f083272358 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 2 Jul 2015 15:32:29 +0200 Subject: [PATCH] =?UTF-8?q?don=E2=80=99t=20compile=20tracks=20specific=20s?= =?UTF-8?q?ources=20for=20ardour.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/gtkmm2ext/wscript | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libs/gtkmm2ext/wscript b/libs/gtkmm2ext/wscript index 3706014c0d..b7545c33c5 100644 --- a/libs/gtkmm2ext/wscript +++ b/libs/gtkmm2ext/wscript @@ -41,7 +41,6 @@ gtkmm2ext_sources = [ 'debug.cc', 'dndtreeview.cc', 'emscale.cc', - 'fader.cc', 'focus_entry.cc', 'grouped_buttons.cc', 'gtk_ui.cc', @@ -87,10 +86,10 @@ def configure(conf): def build(bld): sources = gtkmm2ext_sources if bld.is_tracks_build(): - sources += [ 'waves_fastmeter.cc' ] + sources += [ 'waves_fastmeter.cc', 'fader.cc' ] else: - sources += [ 'fastmeter.cc' ] - + sources += [ 'fastmeter.cc' ] + if bld.is_defined ('INTERNAL_SHARED_LIBS'): obj = bld.shlib(features = 'c cxx cshlib cxxshlib', source=sources) # defines for this library