summaryrefslogtreecommitdiff
path: root/gtk2_ardour/SConscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-10-05 19:00:10 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-10-05 19:00:10 +0000
commitbaf9ce98dc37cd14bc8473ba79c72ea23fbdfc5c (patch)
treecb1006190bc2c6e480abdb18ba89b34cbf23f478 /gtk2_ardour/SConscript
parentf8aee7446be4266a9ea59a28e0b84d39462a84b9 (diff)
new files for GTK-related platform specific stuff, where needed
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2518 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/SConscript')
-rw-r--r--gtk2_ardour/SConscript10
1 files changed, 9 insertions, 1 deletions
diff --git a/gtk2_ardour/SConscript b/gtk2_ardour/SConscript
index b6fff7ed2b..e0ea87ff2d 100644
--- a/gtk2_ardour/SConscript
+++ b/gtk2_ardour/SConscript
@@ -85,6 +85,11 @@ au_pluginui.cc
gtkosx_files=Split("""
sync-menu.c
+cocoacarbon.c
+""")
+
+x11_files=Split("""
+x11.cc
""")
gtkardour_files=Split("""
@@ -257,7 +262,9 @@ if env['VST']:
if gtkardour['GTKOSX']:
extra_sources += gtkosx_files
gtkardour.Append (CCFLAGS="-DTOP_MENUBAR -DGTKOSX")
-
+else:
+ extra_sources += x11_files
+
if gtkardour['AUDIOUNITS']:
extra_sources += audiounit_files
gtkardour.Append(CCFLAGS='-DHAVE_AUDIOUNITS')
@@ -439,6 +446,7 @@ env.Alias ('tarball', env.Distribute (env['DISTTREE'],
skipped_files +
audiounit_files +
gtkosx_files +
+ x11_files +
fft_analysis_files +
glob.glob('po/*.po') + glob.glob('*.h')))