fixes for libsndfile conversion issues, tape track waveform display and overloaded...
[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['ardour_cp'],
28     libraries['gtkmm2ext'],
29 #    libraries['flowcanvas'],
30     libraries['midi++2'],
31     libraries['pbd3'],
32     libraries['gtkmm2'],
33     libraries['glib2'],
34     libraries['libgnomecanvas2'],
35     libraries['libgnomecanvasmm'],
36     libraries['sysmidi'],
37     libraries['sndfile'],
38     libraries['flac'],
39     libraries['lrdf'],
40     libraries['glibmm2'],
41     libraries['pangomm'],
42     libraries['atkmm'],
43     libraries['gdkmm2'],
44     libraries['sigc2'],
45     libraries['gtk2'],
46     libraries['xml'],
47     libraries['xslt'],
48     libraries['soundtouch'],
49     libraries['samplerate'],
50     libraries['jack']
51 ])
52
53 if gtkardour['DMALLOC']:
54         gtkardour.Merge([libraries['dmalloc']])
55         gtkardour.Append(CCFLAGS='-DUSE_DMALLOC')
56
57 if gtkardour['FFT_ANALYSIS']:
58         gtkardour.Merge ([libraries['fftw3f']])
59         gtkardour.Append(CCFLAGS='-DFFT_ANALYSIS')
60
61 skipped_files=Split("""
62 connection_editor.cc
63 """)
64
65 gtkardour_files=Split("""
66 about.cc
67 actions.cc
68 add_route_dialog.cc
69 ardour_dialog.cc
70 ardour_ui.cc
71 ardour_ui2.cc
72 ardour_ui_dependents.cc
73 ardour_ui_dialogs.cc
74 ardour_ui_ed.cc
75 ardour_ui_mixer.cc
76 ardour_ui_options.cc
77 audio_clock.cc
78 audio_time_axis.cc
79 automation_gain_line.cc
80 automation_line.cc
81 automation_pan_line.cc
82 automation_time_axis.cc
83 axis_view.cc
84 canvas-imageframe.c
85 canvas-simpleline.c
86 simpleline.cc
87 canvas-simplerect.c
88 simplerect.cc
89 canvas-waveview.c
90 color_manager.cc
91 crossfade_edit.cc
92 crossfade_view.cc
93 curvetest.cc
94 editing.cc
95 editor.cc
96 editor_actions.cc
97 editor_audio_import.cc
98 editor_audiotrack.cc
99 editor_canvas.cc
100 editor_canvas_events.cc
101 editor_cursors.cc
102 editor_edit_groups.cc
103 editor_export_audio.cc
104 editor_hscroller.cc
105 editor_imageframe.cc
106 editor_keyboard.cc
107 editor_keys.cc
108 editor_markers.cc
109 editor_mixer.cc
110 editor_mouse.cc
111 editor_nudge.cc
112 editor_ops.cc
113 editor_region_list.cc
114 editor_route_list.cc
115 editor_rulers.cc
116 editor_scrub.cc
117 editor_selection_list.cc
118 editor_tempodisplay.cc
119 editor_timefx.cc
120 export_dialog.cc
121 export_session_dialog.cc
122 export_region_dialog.cc
123 export_range_markers_dialog.cc
124 gain_automation_time_axis.cc
125 gain_meter.cc
126 ghostregion.cc
127 grouped_buttons.cc
128 gtk-custom-hruler.c
129 gtk-custom-ruler.c
130 imageframe.cc
131 imageframe_socket_handler.cc
132 imageframe_time_axis.cc
133 imageframe_time_axis_group.cc
134 imageframe_time_axis_view.cc
135 imageframe_view.cc
136 io_selector.cc
137 keyboard.cc
138 location_ui.cc
139 main.cc
140 marker.cc
141 marker_time_axis.cc
142 marker_time_axis_view.cc
143 marker_view.cc
144 meter_bridge.cc
145 meter_bridge_strip.cc
146 mixer_strip.cc
147 mixer_ui.cc
148 new_session_dialog.cc
149 option_editor.cc
150 opts.cc
151 pan_automation_time_axis.cc
152 panner2d.cc
153 panner_ui.cc
154 playlist_selector.cc
155 plugin_selector.cc
156 plugin_ui.cc
157 prompter.cc
158 public_editor.cc
159 redirect_automation_line.cc
160 redirect_automation_time_axis.cc
161 redirect_box.cc
162 region_editor.cc
163 region_gain_line.cc
164 region_selection.cc
165 regionview.cc
166 route_params_ui.cc
167 route_redirect_selection.cc
168 route_ui.cc
169 selection.cc
170 sfdb_ui.cc
171 send_ui.cc
172 streamview.cc
173 taperegionview.cc
174 tempo_dialog.cc
175 time_axis_view.cc
176 time_axis_view_item.cc
177 time_selection.cc
178 utils.cc
179 version.cc
180 visual_time_axis.cc
181 waveview.cc
182 """)
183
184 fft_analysis_files=Split("""
185 analysis_window.cc
186 fft_graph.cc
187 fft_result.cc
188 """)
189
190 pixmap_files=glob.glob('pixmaps/*.xpm')
191
192 intl_files = gtkardour_files + glob.glob('*.h')
193
194 mtest_files=Split("""
195 mtest.cc
196 """)
197
198 itest_files=Split("""
199 itest.cc
200 """)
201
202 extra_sources = []
203
204 vst_files = [ 'vst_pluginui.cc' ]
205
206 if env['VST']:
207         extra_sources += vst_files
208         gtkardour.Append (CCFLAGS="-DVST_SUPPORT", CPPPATH="#libs/fst")
209   
210 if env['FFT_ANALYSIS']:
211         extra_sources += fft_analysis_files
212
213 intl_files += extra_sources
214
215 gtkardour.Append(CCFLAGS="-D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE")
216 gtkardour.Append(CXXFLAGS="-DLOCALEDIR=\\\""+final_prefix+"/share/locale\\\"")
217
218 versionflag = '-DVERSIONSTRING=\\\"' + env['VERSION'] + '\\\"'
219
220 gtkardour.Append(CXXFLAGS=versionflag)
221
222 gtkardour.VersionBuild(['version.cc','version.h'], 'SConscript')
223
224 executable = 'ardour.bin'
225
226 ardour = gtkardour.Program(target = executable, source = gtkardour_files + extra_sources)
227 ardourlib = gtkardour.SharedLibrary(target = 'ardourgtk', source = gtkardour_files + extra_sources)
228
229 mtest = gtkardour.Program(target = 'mtest', source = mtest_files)
230 itest = gtkardour.Program(target = 'itest', source = itest_files)
231
232 my_subst_dict = { }
233 my_subst_dict['%INSTALL_PREFIX%'] = install_prefix
234
235 ardoursh = env.SubstInFile ('ardour.sh','ardour.sh.in', SUBST_DICT = my_subst_dict);
236 env.AddPostAction (ardoursh, Chmod ('$TARGET', 0755))
237
238 if env['VST']:
239         Default(ardourlib)
240         # the library - into the library dir
241         env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2'), ardourlib))
242 else:
243
244         if env['VERSIONED']:
245                 Default (env.VersionedExecutable ('tagged_executable', ardour))
246         else:
247                 Default(ardour)
248
249         #install
250
251         # the executable - into the library dir
252         env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2'), ardour))
253         # the script - into the bin dir
254         env.Alias('install', env.InstallAs(os.path.join(install_prefix, 'bin')+'/ardour2', ardoursh))
255
256 if env['NLS']:
257         Export('gtkardour', 'intl_files')
258         SConscript ('po/SConscript')
259     
260 # configuration files
261 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour2_ui.rc'))
262 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.menus'))
263 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.bindings'))
264 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.colors'))
265 # data files
266 env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour2'), 'splash.ppm'))
267 env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour2/pixmaps'), pixmap_files))
268
269                 
270 #dist
271 env.Alias ('tarball', env.Distribute (env['DISTTREE'],
272                                       [ 'SConscript',
273                                         'i18n.h', 'gettext.h',
274                                         'ardour.sh.in',
275                                         'ardour2_ui.rc', 'splash.ppm',
276                                         'ardour.menus', 'ardour.bindings', 'ardour.colors',
277                                         'editor_xpms'
278                                         ] +
279                                       gtkardour_files + vst_files + pixmap_files +
280                                       glob.glob('po/*.po') + glob.glob('*.h')))
281
282 # generate a prototype full-featured ardour_ui.rc file
283
284 env.Alias ('protorc', env.Command ('proto.rc', gtkardour_files, """
285      grep set_name $SOURCES | \
286 sed 's/.*("\([a-zA-Z_][a-zA-Z_]*\)").*/\\1/' | \
287 grep -v '\\.' | sort | uniq | \
288 awk '/\\./ {} { printf ("style \\"%s\\"\\n{\\n\
289   fg[NORMAL] =   { 0, 0, 0 }\\n\
290   fg[ACTIVE] =   { 0, 0, 0 }\\n\
291   fg[SELECTED] = { 0, 0, 0 }\\n\
292   bg[NORMAL] =   { 0, 0, 0 }\\n\
293   bg[ACTIVE] =   { 0, 0, 0 }\\n\
294   bg[SELECTED] = { 0, 0, 0 }\\n\
295 }\\nwidget \\"*%s\\" style \\"%s\\"\\nwidget \\"*%s*\\" style \\"%s\\"\\n\\n", \
296   $$0, $$0, $$0, $$0, $$0) }' > $TARGET && \
297      grep 'color_map\[[a-zA-Z_][a-zA-Z]*\]' $SOURCES | \
298  sed 's/.*\[\([a-zA-Z_][a-zA-Z_]*\)].*/\\1/'| \
299  sort | uniq | \
300  awk '{ printf ("style \\"%s\\"\\n{\\n\
301   fg[NORMAL] =   { 0, 0, 0 }\\n\
302   fg[ACTIVE] =   { 0, 0, 0 }\\n\
303 }\\nwidget \\"*%s\\" style \\"%s\\"\\n \\n\\n", $$0, $$0, $$0) }' >> $TARGET ;
304 """
305 ))