export range markers patch (revisited), change selection model, copy-drag tempo+meter...
[ardour.git] / gtk2_ardour / SConscript
1 # -*- python -*-
2
3 import os
4 import os.path
5 import glob
6
7 Import('env install_prefix final_prefix config_prefix libraries i18n version')
8
9 gtkardour = env.Copy()
10
11 #
12 # this defines the version number of the GTK interface to ardour
13 #
14
15 domain = 'gtk_ardour'
16
17 gtkardour.Append(DOMAIN=domain, MAJOR=1,MINOR=0,MICRO=2)
18 gtkardour.Append(CCFLAGS="-DPACKAGE=\\\"" + domain + "\\\"")
19 gtkardour.Append(CXXFLAGS="-DPACKAGE=\\\"" + domain + "\\\"")
20 gtkardour.Append(CXXFLAGS="-DLIBSIGC_DISABLE_DEPRECATED")
21 #gtkardour.Append(CXXFLAGS="-DFLOWCANVAS_AA")
22 gtkardour.Append(PACKAGE=domain)
23 gtkardour.Append(POTFILE=domain + '.pot')
24
25 gtkardour.Merge ([
26     libraries['ardour'],
27     libraries['gtkmm2ext'],
28 #    libraries['flowcanvas'],
29     libraries['midi++2'],
30     libraries['pbd3'],
31     libraries['gtkmm2'],
32     libraries['glib2'],
33     libraries['libgnomecanvas2'],
34     libraries['libgnomecanvasmm'],
35     libraries['sysmidi'],
36     libraries['sndfile'],
37     libraries['lrdf'],
38     libraries['glibmm2'],
39     libraries['pangomm'],
40     libraries['atkmm'],
41     libraries['gdkmm2'],
42     libraries['sigc2'],
43     libraries['gtk2'],
44     libraries['xml'],
45     libraries['soundtouch'],
46     libraries['samplerate'],
47     libraries['jack'],
48     libraries['glade2'],
49     libraries['libglademm']
50 ])
51
52 if gtkardour['VST']:
53     gtkardour.Merge ([ libraries['fst']])
54
55 skipped_files=Split("""
56 connection_editor.cc
57 """)
58
59 gtkardour_files=Split("""
60 about.cc
61 actions.cc
62 add_route_dialog.cc
63 ardour_dialog.cc
64 ardour_ui.cc
65 ardour_ui2.cc
66 ardour_ui_dependents.cc
67 ardour_ui_dialogs.cc
68 ardour_ui_ed.cc
69 ardour_ui_mixer.cc
70 ardour_ui_options.cc
71 audio_clock.cc
72 audio_time_axis.cc
73 automation_gain_line.cc
74 automation_line.cc
75 automation_pan_line.cc
76 automation_time_axis.cc
77 axis_view.cc
78 canvas-imageframe.c
79 canvas-simpleline.c
80 simpleline.cc
81 canvas-simplerect.c
82 simplerect.cc
83 canvas-waveview.c
84 color_manager.cc
85 crossfade_edit.cc
86 crossfade_view.cc
87 curvetest.cc
88 default_keys.cc
89 editing.cc
90 editor.cc
91 editor_actions.cc
92 editor_audiotrack.cc
93 editor_canvas.cc
94 editor_canvas_events.cc
95 editor_cursors.cc
96 editor_edit_groups.cc
97 editor_export_audio.cc
98 editor_hscroller.cc
99 editor_imageframe.cc
100 editor_keyboard.cc
101 editor_keys.cc
102 editor_markers.cc
103 editor_mixer.cc
104 editor_mouse.cc
105 editor_nudge.cc
106 editor_ops.cc
107 editor_region_list.cc
108 editor_route_list.cc
109 editor_rulers.cc
110 editor_scrub.cc
111 editor_selection_list.cc
112 editor_tempodisplay.cc
113 editor_timefx.cc
114 export_dialog.cc
115 export_session_dialog.cc
116 export_region_dialog.cc
117 export_range_markers_dialog.cc
118 gain_automation_time_axis.cc
119 gain_meter.cc
120 ghostregion.cc
121 glade_path.cc
122 glade_factory.cc
123 grouped_buttons.cc
124 gtk-custom-hruler.c
125 gtk-custom-ruler.c
126 imageframe.cc
127 imageframe_socket_handler.cc
128 imageframe_time_axis.cc
129 imageframe_time_axis_group.cc
130 imageframe_time_axis_view.cc
131 imageframe_view.cc
132 io_selector.cc
133 keyboard.cc
134 location_ui.cc
135 main.cc
136 marker.cc
137 marker_time_axis.cc
138 marker_time_axis_view.cc
139 marker_view.cc
140 meter_bridge.cc
141 meter_bridge_strip.cc
142 mixer_strip.cc
143 mixer_ui.cc
144 new_session_dialog.cc
145 option_editor.cc
146 opts.cc
147 pan_automation_time_axis.cc
148 panner2d.cc
149 panner_ui.cc
150 playlist_selector.cc
151 plugin_selector.cc
152 plugin_ui.cc
153 prompter.cc
154 public_editor.cc
155 redirect_automation_line.cc
156 redirect_automation_time_axis.cc
157 redirect_box.cc
158 region_editor.cc
159 region_gain_line.cc
160 region_selection.cc
161 regionview.cc
162 route_params_ui.cc
163 route_redirect_selection.cc
164 route_ui.cc
165 selection.cc
166 sfdb_ui.cc
167 send_ui.cc
168 streamview.cc
169 taperegionview.cc
170 tempo_dialog.cc
171 time_axis_view.cc
172 time_axis_view_item.cc
173 time_selection.cc
174 utils.cc
175 version.cc
176 visual_time_axis.cc
177 waveview.cc
178 """)
179
180 glade_files=glob.glob('glade/*.glade')
181
182 intl_files = gtkardour_files + glade_files + glob.glob('*.h')
183
184 mtest_files=Split("""
185 mtest.cc
186 """)
187
188 itest_files=Split("""
189 itest.cc
190 """)
191
192 extra_sources = []
193 vst_files = [ 'vst_pluginui.cc' ]
194
195 if env['VST']:
196    extra_sources += vst_files
197
198 intl_files += extra_sources
199
200 gtkardour.Append(CCFLAGS="-D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE")
201 gtkardour.Append(CXXFLAGS="-DDATA_DIR=\\\""+final_prefix+"/share\\\"")
202 gtkardour.Append(CXXFLAGS="-DLOCALEDIR=\\\""+final_prefix+"/share/locale\\\"")
203 gtkardour.Append(CXXFLAGS="-DGLADEPATH=\\\""+final_prefix+"/share/ardour/glade\\\"")
204
205 versionflag = '-DVERSIONSTRING=\\\"' + env['VERSION'] + '\\\"'
206
207 gtkardour.Append(CXXFLAGS=versionflag)
208
209 gtkardour.VersionBuild(['version.cc','version.h'], 'SConscript')
210
211 executable = 'ardour.bin'
212
213 ardour = gtkardour.Program(target = executable, source = gtkardour_files + extra_sources)
214 mtest = gtkardour.Program(target = 'mtest', source = mtest_files)
215 itest = gtkardour.Program(target = 'itest', source = itest_files)
216
217 Default(ardour)
218
219 if env['VERSIONED']:
220     Default (env.VersionedExecutable ('tagged_executable', ardour))
221
222 if env['NLS']:
223     Export('gtkardour', 'intl_files')
224     SConscript ('po/SConscript')
225     
226 #install
227
228
229 env.Alias('install', env.InstallAs(os.path.join(install_prefix, 'bin')+'/ardour', ardour))
230 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour'), 'ardour2_ui.rc'))
231 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour'), 'ardour.menus'))
232 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour'), 'ardour.bindings'))
233 env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour'), 'splash.ppm'))
234 env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour/glade'), glade_files))
235
236 #dist
237 env.Alias ('tarball', env.Distribute (env['DISTTREE'],
238                                       [ 'SConscript',
239                                         'i18n.h', 'gettext.h',
240                                         'editor_xpms', 'misc_xpms',
241                                         'crossfade_xpms.h', 'meter_xpms.h',
242                                         'ardour2_ui.rc', 'splash.ppm',
243                                         'ardour.menus', 'ardour.bindings'
244                                         ] +
245                                       gtkardour_files + vst_files + glade_files +
246                                       glob.glob('po/*.po') + glob.glob('*.h')))
247
248 # generate a prototype full-featured ardour_ui.rc file
249
250 env.Alias ('protorc', env.Command ('proto.rc', gtkardour_files, """
251      grep set_name $SOURCES | \
252 sed 's/.*("\([a-zA-Z_][a-zA-Z_]*\)").*/\\1/' | \
253 grep -v '\\.' | sort | uniq | \
254 awk '/\\./ {} { printf ("style \\"%s\\"\\n{\\n\
255   fg[NORMAL] =   { 0, 0, 0 }\\n\
256   fg[ACTIVE] =   { 0, 0, 0 }\\n\
257   fg[SELECTED] = { 0, 0, 0 }\\n\
258   bg[NORMAL] =   { 0, 0, 0 }\\n\
259   bg[ACTIVE] =   { 0, 0, 0 }\\n\
260   bg[SELECTED] = { 0, 0, 0 }\\n\
261 }\\nwidget \\"*%s\\" style \\"%s\\"\\nwidget \\"*%s*\\" style \\"%s\\"\\n\\n", \
262   $$0, $$0, $$0, $$0, $$0) }' > $TARGET && \
263      grep 'color_map\[[a-zA-Z_][a-zA-Z]*\]' $SOURCES | \
264  sed 's/.*\[\([a-zA-Z_][a-zA-Z_]*\)].*/\\1/'| \
265  sort | uniq | \
266  awk '{ printf ("style \\"%s\\"\\n{\\n\
267   fg[NORMAL] =   { 0, 0, 0 }\\n\
268   fg[ACTIVE] =   { 0, 0, 0 }\\n\
269 }\\nwidget \\"*%s\\" style \\"%s\\"\\n \\n\\n", $$0, $$0, $$0) }' >> $TARGET ;
270 """
271 ))