button hacks and more
[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_message.cc
65 ardour_ui.cc
66 ardour_ui2.cc
67 ardour_ui_dependents.cc
68 ardour_ui_dialogs.cc
69 ardour_ui_ed.cc
70 ardour_ui_mixer.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 crossfade_edit.cc
85 crossfade_view.cc
86 curvetest.cc
87 default_keys.cc
88 editing.cc
89 editor.cc
90 editor_actions.cc
91 editor_audiotrack.cc
92 editor_canvas.cc
93 editor_canvas_events.cc
94 editor_cursors.cc
95 editor_edit_groups.cc
96 editor_export_audio.cc
97 editor_hscroller.cc
98 editor_imageframe.cc
99 editor_keyboard.cc
100 editor_keys.cc
101 editor_markers.cc
102 editor_mixer.cc
103 editor_mouse.cc
104 editor_nudge.cc
105 editor_ops.cc
106 editor_region_list.cc
107 editor_route_list.cc
108 editor_rulers.cc
109 editor_scrub.cc
110 editor_selection_list.cc
111 editor_tempodisplay.cc
112 editor_timefx.cc
113 export_dialog.cc
114 gain_automation_time_axis.cc
115 gain_meter.cc
116 ghostregion.cc
117 glade_path.cc
118 glade_factory.cc
119 grouped_buttons.cc
120 gtk-custom-hruler.c
121 gtk-custom-ruler.c
122 imageframe.cc
123 imageframe_socket_handler.cc
124 imageframe_time_axis.cc
125 imageframe_time_axis_group.cc
126 imageframe_time_axis_view.cc
127 imageframe_view.cc
128 io_selector.cc
129 keyboard.cc
130 location_ui.cc
131 main.cc
132 marker.cc
133 marker_time_axis.cc
134 marker_time_axis_view.cc
135 marker_view.cc
136 meter_bridge.cc
137 meter_bridge_strip.cc
138 mixer_strip.cc
139 mixer_ui.cc
140 new_session_dialog.cc
141 option_editor.cc
142 opts.cc
143 pan_automation_time_axis.cc
144 panner2d.cc
145 panner_ui.cc
146 playlist_selector.cc
147 plugin_selector.cc
148 plugin_ui.cc
149 prompter.cc
150 public_editor.cc
151 redirect_automation_line.cc
152 redirect_automation_time_axis.cc
153 redirect_box.cc
154 region_editor.cc
155 region_gain_line.cc
156 region_selection.cc
157 regionview.cc
158 route_params_ui.cc
159 route_redirect_selection.cc
160 route_ui.cc
161 selection.cc
162 sfdb_ui.cc
163 send_ui.cc
164 streamview.cc
165 tempo_dialog.cc
166 time_axis_view.cc
167 time_axis_view_item.cc
168 time_selection.cc
169 utils.cc
170 version.cc
171 visual_time_axis.cc
172 waveview.cc
173 """)
174
175 glade_files=glob.glob('glade/*.glade')
176
177 intl_files = gtkardour_files + glade_files + glob.glob('*.h')
178
179 mtest_files=Split("""
180 mtest.cc
181 """)
182
183 itest_files=Split("""
184 itest.cc
185 """)
186
187 extra_sources = []
188 vst_files = [ 'vst_pluginui.cc' ]
189
190 if env['VST']:
191    extra_sources += vst_files
192
193 intl_files += extra_sources
194
195 gtkardour.Append(CCFLAGS="-D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE")
196 gtkardour.Append(CXXFLAGS="-DDATA_DIR=\\\""+final_prefix+"/share\\\"")
197 gtkardour.Append(CXXFLAGS="-DLOCALEDIR=\\\""+final_prefix+"/share/locale\\\"")
198 gtkardour.Append(CXXFLAGS="-DGLADEPATH=\\\""+final_prefix+"/share/ardour/glade\\\"")
199
200 versionflag = '-DVERSIONSTRING=\\\"' + env['VERSION'] + '\\\"'
201
202 gtkardour.Append(CXXFLAGS=versionflag)
203
204 gtkardour.VersionBuild(['version.cc','version.h'], 'SConscript')
205
206 executable = 'ardour.bin'
207
208 ardour = gtkardour.Program(target = executable, source = gtkardour_files + extra_sources)
209 mtest = gtkardour.Program(target = 'mtest', source = mtest_files)
210 #itest = gtkardour.Program(target = 'itest', source = itest_files)
211
212 Default(ardour)
213
214 if env['VERSIONED']:
215     Default (env.VersionedExecutable ('tagged_executable', ardour))
216
217 if env['NLS']:
218     Export('gtkardour', 'intl_files')
219     SConscript ('po/SConscript')
220     
221 #install
222
223
224 env.Alias('install', env.InstallAs(os.path.join(install_prefix, 'bin')+'/ardour', ardour))
225 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour'), 'ardour2_ui.rc'))
226 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour'), 'ardour-menus.xml'))
227 env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour'), 'splash.ppm'))
228 env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour/glade'), glade_files))
229
230 #dist
231 env.Alias ('tarball', env.Distribute (env['DISTTREE'],
232                                       [ 'SConscript',
233                                         'i18n.h', 'gettext.h',
234                                         'editor_xpms', 'misc_xpms', 
235                                         'ardour2_ui.rc', 'splash.ppm'
236                                         ] +
237                                       gtkardour_files + vst_files + glade_files +
238                                       glob.glob('po/*.po') + glob.glob('*.h')))
239
240 # generate a prototype full-featured ardour_ui.rc file
241
242 env.Alias ('protorc', env.Command ('proto.rc', gtkardour_files, """
243      grep set_name $SOURCES | \
244 sed 's/.*("\([a-zA-Z_][a-zA-Z_]*\)").*/\\1/' | \
245 grep -v '\\.' | sort | uniq | \
246 awk '/\\./ {} { printf ("style \\"%s\\"\\n{\\n\
247   fg[NORMAL] =   { 0, 0, 0 }\\n\
248   fg[ACTIVE] =   { 0, 0, 0 }\\n\
249   fg[SELECTED] = { 0, 0, 0 }\\n\
250   bg[NORMAL] =   { 0, 0, 0 }\\n\
251   bg[ACTIVE] =   { 0, 0, 0 }\\n\
252   bg[SELECTED] = { 0, 0, 0 }\\n\
253 }\\nwidget \\"*%s\\" style \\"%s\\"\\nwidget \\"*%s*\\" style \\"%s\\"\\n\\n", \
254   $$0, $$0, $$0, $$0, $$0) }' > $TARGET && \
255      grep 'color_map\[[a-zA-Z_][a-zA-Z]*\]' $SOURCES | \
256  sed 's/.*\[\([a-zA-Z_][a-zA-Z_]*\)].*/\\1/'| \
257  sort | uniq | \
258  awk '{ printf ("style \\"%s\\"\\n{\\n\
259   fg[NORMAL] =   { 0, 0, 0 }\\n\
260   fg[ACTIVE] =   { 0, 0, 0 }\\n\
261 }\\nwidget \\"*%s\\" style \\"%s\\"\\n \\n\\n", $$0, $$0, $$0) }' >> $TARGET ;
262 """
263 ))