X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fwscript;h=cbcb4f29a731eddd0d2b254aaf5f31ad80d2bbcf;hb=05451a80f2dd90d2d5ea9f1a529d0573ac24587c;hp=3a5a301a13ae2b03dc1e85dee2e5a1f5d73c0589;hpb=7c87036ee3ba9dc4cc8b6f60c5a9e6dd399b1285;p=ardour.git diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript index 3a5a301a13..cbcb4f29a7 100644 --- a/gtk2_ardour/wscript +++ b/gtk2_ardour/wscript @@ -54,7 +54,6 @@ gtk2_ardour_sources = [ 'automation_time_axis.cc', 'axis_view.cc', 'bundle_manager.cc', - 'cairo_widget.cc', 'canvas-flag.cc', 'canvas-hit.cc', 'canvas-note-event.cc', @@ -92,7 +91,6 @@ gtk2_ardour_sources = [ 'editor_markers.cc', 'editor_mixer.cc', 'editor_mouse.cc', - 'editor_nudge.cc', 'editor_ops.cc', 'editor_regions.cc', 'editor_routes.cc', @@ -145,6 +143,7 @@ gtk2_ardour_sources = [ 'midi_port_dialog.cc', 'midi_region_view.cc', 'midi_scroomer.cc', + 'midi_selection.cc', 'midi_streamview.cc', 'midi_time_axis.cc', 'midi_tracer.cc', @@ -164,6 +163,7 @@ gtk2_ardour_sources = [ 'option_editor.cc', 'opts.cc', 'panner2d.cc', + 'panner_interface.cc', 'panner_ui.cc', 'piano_roll_header.cc', 'playlist_selector.cc', @@ -411,9 +411,12 @@ def build(bld): if bld.is_defined('HAVE_COREAUDIO'): TaskGen.task_gen.mappings['.mm'] = TaskGen.task_gen.mappings['.cc'] - obj.source += [ 'cocoacarbon.mm', 'au_pluginui.mm' ] + obj.source += [ 'cocoacarbon.mm' ] obj.use += ' libappleutility ' + if bld.is_defined('AUDIOUNIT_SUPPORT'): + obj.source += [ 'au_pluginui.mm' ] + if bld.is_defined('WINDOWS_VST_SUPPORT'): # If we require VST support we build a stub main() and the FST library # here using winegcc, and link it to the GTK front-end library @@ -472,7 +475,7 @@ def build(bld): # Set up font sizes if bld.is_defined('GTKOSX'): # OS X fonts - basefont = "Lucida Grande" + basefont = "" font_sizes = { 'TINY' : '7', 'SMALLER' : '9',