Extract SubtagListCtrl to its own files.
[dcpomatic.git] / src / wx / wscript
1 #
2 #    Copyright (C) 2012-2022 Carl Hetherington <cth@carlh.net>
3 #
4 #    This file is part of DCP-o-matic.
5 #
6 #    DCP-o-matic is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    DCP-o-matic is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 import os
21 import subprocess
22 import shlex
23 import glob
24 from waflib import Logs
25 import i18n
26
27 sources = """
28           about_dialog.cc
29           audio_dialog.cc
30           audio_gain_dialog.cc
31           audio_mapping_view.cc
32           audio_panel.cc
33           audio_plot.cc
34           auto_crop_dialog.cc
35           barco_alchemy_certificate_panel.cc
36           batch_job_view.cc
37           check_box.cc
38           christie_certificate_panel.cc
39           cinema_dialog.cc
40           closed_captions_dialog.cc
41           colour_conversion_editor.cc
42           config_dialog.cc
43           config_move_dialog.cc
44           confirm_kdm_email_dialog.cc
45           content_advanced_dialog.cc
46           content_colour_conversion_dialog.cc
47           content_menu.cc
48           content_panel.cc
49           content_properties_dialog.cc
50           content_sub_panel.cc
51           content_version_dialog.cc
52           content_view.cc
53           controls.cc
54           credentials_download_certificate_panel.cc
55           custom_scale_dialog.cc
56           dcp_panel.cc
57           dcp_text_track_dialog.cc
58           dcpomatic_button.cc
59           dcpomatic_choice.cc
60           dcpomatic_spin_ctrl.cc
61           dir_picker_ctrl.cc
62           disk_warning_dialog.cc
63           dkdm_dialog.cc
64           dkdm_output_panel.cc
65           dolby_doremi_certificate_panel.cc
66           download_certificate_dialog.cc
67           download_certificate_panel.cc
68           drive_wipe_warning_dialog.cc
69           email_dialog.cc
70           export_subtitles_dialog.cc
71           export_video_file_dialog.cc
72           extra_kdm_email_dialog.cc
73           file_picker_ctrl.cc
74           film_editor.cc
75           film_name_location_dialog.cc
76           film_viewer.cc
77           filter_dialog.cc
78           focus_manager.cc
79           fonts_dialog.cc
80           full_config_dialog.cc
81           full_language_tag_dialog.cc
82           gain_calculator_dialog.cc
83           gdc_certificate_panel.cc
84           gl_video_view.cc
85           hints_dialog.cc
86           html_dialog.cc
87           i18n_hook.cc
88           image_sequence_dialog.cc
89           instant_i18n_dialog.cc
90           interop_metadata_dialog.cc
91           job_manager_view.cc
92           job_view.cc
93           job_view_dialog.cc
94           kdm_advanced_dialog.cc
95           kdm_cpl_panel.cc
96           kdm_dialog.cc
97           kdm_output_panel.cc
98           kdm_timing_panel.cc
99           language_tag_dialog.cc
100           language_tag_widget.cc
101           kdm_choice.cc
102           make_chain_dialog.cc
103           markers.cc
104           markers_dialog.cc
105           markers_panel.cc
106           message_dialog.cc
107           metadata_dialog.cc
108           move_to_dialog.cc
109           nag_dialog.cc
110           name_format_editor.cc
111           new_dkdm_folder_dialog.cc
112           normal_job_view.cc
113           paste_dialog.cc
114           password_entry.cc
115           player_config_dialog.cc
116           player_information.cc
117           player_stress_tester.cc
118           playhead_to_timecode_dialog.cc
119           playhead_to_frame_dialog.cc
120           playlist_controls.cc
121           playlist_editor_config_dialog.cc
122           question_dialog.cc
123           rating_dialog.cc
124           qube_certificate_panel.cc
125           recipients_panel.cc
126           recipient_dialog.cc
127           recreate_chain_dialog.cc
128           repeat_dialog.cc
129           report_problem_dialog.cc
130           rename_template_dialog.cc
131           rgba_colour_picker.cc
132           save_template_dialog.cc
133           screen_dialog.cc
134           screens_panel.cc
135           self_dkdm_dialog.cc
136           send_i18n_dialog.cc
137           send_test_email_dialog.cc
138           server_dialog.cc
139           servers_list_dialog.cc
140           simple_video_view.cc
141           smpte_metadata_dialog.cc
142           standard_controls.cc
143           static_text.cc
144           subtag_list_ctrl.cc
145           subtitle_appearance_dialog.cc
146           suspender.cc
147           system_font_dialog.cc
148           system_information_dialog.cc
149           table_dialog.cc
150           templates_dialog.cc
151           text_panel.cc
152           text_view.cc
153           time_picker.cc
154           timer_display.cc
155           timecode.cc
156           timeline.cc
157           timeline_atmos_content_view.cc
158           timeline_content_view.cc
159           timeline_dialog.cc
160           timeline_audio_content_view.cc
161           timeline_labels_view.cc
162           timeline_text_content_view.cc
163           timeline_reels_view.cc
164           timeline_time_axis_view.cc
165           timeline_video_content_view.cc
166           timeline_view.cc
167           timing_panel.cc
168           try_unmount_dialog.cc
169           update_dialog.cc
170           verify_dcp_dialog.cc
171           verify_dcp_progress_dialog.cc
172           video_panel.cc
173           video_view.cc
174           video_waveform_dialog.cc
175           video_waveform_plot.cc
176           wx_util.cc
177           wx_signal_manager.cc
178           """
179
180 def configure(conf):
181
182     wx_libs = 'core,richtext,adv,html,xml,propgrid'
183
184     if conf.options.wx_config is not None:
185         wx_config = conf.options.wx_config
186         conf.check_cfg(msg='Checking for wxWidgets using %s' % wx_config,
187                        package='',
188                        path=wx_config,
189                        args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
190                        uselib_store='WXWIDGETS',
191                        mandatory=True)
192     else:
193         try:
194             wx_config = '/usr/lib64/wx/config/gtk2-unicode-3.0'
195             conf.check_cfg(msg='Checking for wxWidgets using gtk2-unicode-3.0',
196                            package='',
197                            path=wx_config,
198                            args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
199                            uselib_store='WXWIDGETS',
200                            mandatory=True)
201         except:
202             try:
203                 wx_config = 'wx-config-3.0-gtk2'
204                 conf.check_cfg(msg='Checking for wxWidgets using wx-config-3.0-gtk2',
205                                package='',
206                                path=wx_config,
207                                args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
208                                uselib_store='WXWIDGETS',
209                                mandatory=True)
210             except:
211                 wx_config = 'wx-config'
212                 conf.check_cfg(msg='Checking for wxWidgets using wx-config',
213                                package='',
214                                path=wx_config,
215                                args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
216                                uselib_store='WXWIDGETS',
217                                mandatory=True)
218
219     if conf.env.TARGET_LINUX:
220         conf.env.append_value('CXXFLAGS', ['-DGL_GLEXT_PROTOTYPES', '-DGLX_GLXEXT_PROTOTYPES'])
221     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
222         conf.env.append_value('CXXFLAGS', ['-DWGL_WGLEXT_PROTOTYPES'])
223     conf.env.append_value('CXXFLAGS', ['-DwxNO_UNSAFE_WXSTRING_CONV'])
224
225     if conf.options.static_wxwidgets:
226         # wx-config returns its static libraries as full paths, without -l prefixes, which confuses
227         # check_cfg().  It puts the static libraries into LINKFLAGS_WXWIDGETS, so fish them out.
228         stlibs = []
229         new_linkflags = []
230         stlib_paths = []
231         for f in conf.env.LINKFLAGS_WXWIDGETS:
232             if f.startswith('/'):
233                 d = os.path.dirname(f)
234                 if not d in stlib_paths:
235                     stlib_paths.append(d)
236                 stlibs.append(os.path.basename(f)[3:-2])
237             else:
238                 new_linkflags.append(f)
239
240         conf.env.STLIB_WXWIDGETS = stlibs
241         conf.env.LINKFLAGS_WXWIDGETS = new_linkflags
242         conf.env.STLIBPATH_WXWIDGETS = stlib_paths
243
244     conf.in_msg = 1
245     wx_version = conf.check_cfg(package='wxwidgets', path=wx_config, args='--version').strip()
246     conf.in_msg = 0
247     if not wx_version.startswith('3.'):
248         conf.fatal('wxwidgets version 3.x.y is required; %s found' % wx_version)
249
250     config = conf.check_cfg(package='wxwidgets', path=wx_config, args='--selected-config').strip()
251     if config.find('gtk2') != -1:
252         conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
253
254     try:
255         conf.check_cfg(msg='Checking for RtAudio using pkg-config',
256                        package='rtaudio',
257                        args='--cflags --libs',
258                        uselib_store='RTAUDIO',
259                        mandatory=True)
260     except:
261         conf.check_cfg(msg='Checking for RtAudio headers using rtaudio-config',
262                        package='',
263                        path='rtaudio-config',
264                        args='--cppflags',
265                        uselib_store='RTAUDIO',
266                        mandatory=True)
267
268         conf.check_cfg(msg='Checking for RtAudio libraries using rtaudio-config',
269                        package='',
270                        path='rtaudio-config',
271                        args='--libs',
272                        uselib_store='RTAUDIO',
273                        mandatory=True)
274
275     # Some rtaudio-configs don't include rtaudio as a link library.  Go figure.
276     conf.env.LIB_RTAUDIO.append('rtaudio')
277     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
278         # Don't explicitly link with pthread on Windows
279         conf.env.CFLAGS_RTAUDIO.remove('-pthread')
280         conf.env.LINKFLAGS_RTAUDIO.remove('-pthread')
281         # We need some libraries for WASAPI
282         conf.env.LIB_RTAUDIO.append('mfplat')
283         conf.env.LIB_RTAUDIO.append('mfuuid')
284         conf.env.LIB_RTAUDIO.append('wmcodecdspuuid')
285
286     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32 or conf.env.TARGET_LINUX:
287         conf.check_cfg(package='gl', args='--cflags --libs', uselib_store='GL', mandatory=True)
288         conf.check_cfg(package='glu', args='--cflags --libs', uselib_store='GLU', mandatory=True)
289         if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
290             conf.check_cfg(package='glew', args='--cflags --libs', uselib_store='GLEW', mandatory=True)
291     else:
292         conf.env.STLIB_GL = 'gl'
293         conf.env.STLIB_GLU = 'glu'
294
295     if conf.env.TARGET_LINUX:
296         conf.check_cxx(fragment="""
297                                 #include <wx/glcanvas.h>
298                                 #include <GL/glu.h>
299                                 #include <GL/glext.h>
300                                 #include <GL/glxext.h>
301                                 int main() {
302                                     glXSwapIntervalEXT (0, 0, 1);
303                                     return 0;
304                                 }
305                                 """,
306                        msg='Checking for glXSwapIntervalEXT',
307                        okmsg='yes',
308                        uselib='GL WXWIDGETS',
309                        define_name='DCPOMATIC_HAVE_GLX_SWAP_INTERVAL_EXT',
310                        mandatory=False)
311
312
313 def build(bld):
314     if bld.env.STATIC_DCPOMATIC:
315         obj = bld(features='cxx cxxstlib')
316     else:
317         obj = bld(features='cxx cxxshlib')
318
319     obj.name   = 'libdcpomatic2-wx'
320     obj.export_includes = ['..']
321     obj.uselib = 'BOOST_FILESYSTEM BOOST_THREAD BOOST_REGEX WXWIDGETS DCP SUB ZIP CXML RTAUDIO ICU '
322     if bld.env.TARGET_LINUX:
323         obj.uselib += 'GTK GL GLU '
324     if bld.env.TARGET_WINDOWS_64 or bld.env.TARGET_WINDOWS_32:
325         obj.uselib += 'WINSOCK2 OLE32 DSOUND WINMM KSUSER GL GLU GLEW '
326     if bld.env.TARGET_OSX:
327         obj.framework = ['CoreAudio', 'OpenGL']
328     obj.use = 'libdcpomatic2'
329     obj.source = sources
330     obj.target = 'dcpomatic2-wx'
331
332     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdcpomatic2-wx', bld)
333
334 def pot(bld):
335     i18n.pot(os.path.join('src', 'wx'), sources + " editable_list.h content_widget.h", 'libdcpomatic-wx')
336
337 def pot_merge(bld):
338     i18n.pot_merge(os.path.join('src', 'wx'), 'libdcpomatic-wx')