Use sqlite for cinema and DKDM recipient lists.
[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_timeline.cc
52           content_timeline_atmos_view.cc
53           content_timeline_audio_view.cc
54           content_timeline_dialog.cc
55           content_timeline_text_view.cc
56           content_timeline_video_view.cc
57           content_timeline_view.cc
58           content_version_dialog.cc
59           content_view.cc
60           controls.cc
61           credentials_download_certificate_panel.cc
62           custom_scale_dialog.cc
63           dcp_referencing_dialog.cc
64           dcp_panel.cc
65           dcp_timeline.cc
66           dcp_timeline_dialog.cc
67           dcp_timeline_reel_marker_view.cc
68           dcp_text_track_dialog.cc
69           dcpomatic_button.cc
70           dcpomatic_choice.cc
71           dcpomatic_spin_ctrl.cc
72           dir_dialog.cc
73           dir_picker_ctrl.cc
74           disk_warning_dialog.cc
75           dkdm_dialog.cc
76           dkdm_output_panel.cc
77           dolby_doremi_certificate_panel.cc
78           download_certificate_dialog.cc
79           download_certificate_panel.cc
80           drive_wipe_warning_dialog.cc
81           email_dialog.cc
82           export_subtitles_dialog.cc
83           export_video_file_dialog.cc
84           extra_kdm_email_dialog.cc
85           file_dialog.cc
86           file_picker_ctrl.cc
87           film_editor.cc
88           film_name_location_dialog.cc
89           film_viewer.cc
90           filter_dialog.cc
91           focus_manager.cc
92           fonts_dialog.cc
93           full_config_dialog.cc
94           full_language_tag_dialog.cc
95           gain_calculator_dialog.cc
96           gdc_certificate_panel.cc
97           gl_video_view.cc
98           hints_dialog.cc
99           html_dialog.cc
100           i18n_hook.cc
101           image_sequence_dialog.cc
102           invalid_certificate_period_dialog.cc
103           instant_i18n_dialog.cc
104           interop_metadata_dialog.cc
105           job_manager_view.cc
106           job_view.cc
107           job_view_dialog.cc
108           kdm_advanced_dialog.cc
109           kdm_cpl_panel.cc
110           kdm_dialog.cc
111           kdm_output_panel.cc
112           kdm_timing_panel.cc
113           language_subtag_panel.cc
114           language_tag_dialog.cc
115           language_tag_widget.cc
116           load_config_from_zip_dialog.cc
117           kdm_choice.cc
118           make_chain_dialog.cc
119           markers.cc
120           markers_dialog.cc
121           markers_panel.cc
122           message_dialog.cc
123           metadata_dialog.cc
124           move_to_dialog.cc
125           nag_dialog.cc
126           name_format_editor.cc
127           new_dkdm_folder_dialog.cc
128           normal_job_view.cc
129           paste_dialog.cc
130           password_entry.cc
131           player_config_dialog.cc
132           player_information.cc
133           player_stress_tester.cc
134           playhead_to_timecode_dialog.cc
135           playhead_to_frame_dialog.cc
136           playlist_controls.cc
137           playlist_editor_config_dialog.cc
138           question_dialog.cc
139           rating_dialog.cc
140           qube_certificate_panel.cc
141           recipients_panel.cc
142           recipient_dialog.cc
143           recreate_chain_dialog.cc
144           region_subtag_dialog.cc
145           region_subtag_widget.cc
146           repeat_dialog.cc
147           report_problem_dialog.cc
148           rename_template_dialog.cc
149           rgba_colour_picker.cc
150           save_template_dialog.cc
151           screen_dialog.cc
152           screens_panel.cc
153           self_dkdm_dialog.cc
154           send_i18n_dialog.cc
155           send_test_email_dialog.cc
156           server_dialog.cc
157           servers_list_dialog.cc
158           simple_video_view.cc
159           smpte_metadata_dialog.cc
160           standard_controls.cc
161           static_text.cc
162           subtag_list_ctrl.cc
163           subtitle_appearance_dialog.cc
164           suspender.cc
165           system_font_dialog.cc
166           system_information_dialog.cc
167           table_dialog.cc
168           templates_dialog.cc
169           text_panel.cc
170           text_view.cc
171           time_picker.cc
172           timer_display.cc
173           timecode.cc
174           timeline.cc
175           timeline_content_view.cc
176           timeline_labels_view.cc
177           timeline_reels_view.cc
178           timeline_time_axis_view.cc
179           timing_panel.cc
180           try_unmount_dialog.cc
181           update_dialog.cc
182           verify_dcp_result_dialog.cc
183           verify_dcp_result_panel.cc
184           verify_dcp_progress_dialog.cc
185           verify_dcp_progress_panel.cc
186           video_panel.cc
187           video_view.cc
188           video_waveform_dialog.cc
189           video_waveform_plot.cc
190           wx_signal_manager.cc
191           wx_util.cc
192           wx_variant.cc
193           """
194
195 def configure(conf):
196
197     wx_libs = 'core,richtext,adv,html,xml,propgrid'
198
199     if conf.options.wx_config is not None:
200         wx_config = conf.options.wx_config
201         conf.check_cfg(msg='Checking for wxWidgets using %s' % wx_config,
202                        package='',
203                        path=wx_config,
204                        args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
205                        uselib_store='WXWIDGETS',
206                        mandatory=True)
207     else:
208         try:
209             wx_config = '/usr/lib64/wx/config/gtk2-unicode-3.0'
210             conf.check_cfg(msg='Checking for wxWidgets using gtk2-unicode-3.0',
211                            package='',
212                            path=wx_config,
213                            args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
214                            uselib_store='WXWIDGETS',
215                            mandatory=True)
216         except:
217             try:
218                 wx_config = 'wx-config-3.0-gtk2'
219                 conf.check_cfg(msg='Checking for wxWidgets using wx-config-3.0-gtk2',
220                                package='',
221                                path=wx_config,
222                                args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
223                                uselib_store='WXWIDGETS',
224                                mandatory=True)
225             except:
226                 wx_config = 'wx-config'
227                 conf.check_cfg(msg='Checking for wxWidgets using wx-config',
228                                package='',
229                                path=wx_config,
230                                args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
231                                uselib_store='WXWIDGETS',
232                                mandatory=True)
233
234     if conf.env.TARGET_LINUX:
235         conf.env.append_value('CXXFLAGS', ['-DGL_GLEXT_PROTOTYPES', '-DGLX_GLXEXT_PROTOTYPES'])
236     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
237         conf.env.append_value('CXXFLAGS', ['-DWGL_WGLEXT_PROTOTYPES'])
238     conf.env.append_value('CXXFLAGS', ['-DwxNO_UNSAFE_WXSTRING_CONV'])
239
240     if conf.options.static_wxwidgets:
241         # wx-config returns its static libraries as full paths, without -l prefixes, which confuses
242         # check_cfg().  It puts the static libraries into LINKFLAGS_WXWIDGETS, so fish them out.
243         stlibs = []
244         new_linkflags = []
245         stlib_paths = []
246         for f in conf.env.LINKFLAGS_WXWIDGETS:
247             if f.startswith('/'):
248                 d = os.path.dirname(f)
249                 if not d in stlib_paths:
250                     stlib_paths.append(d)
251                 stlibs.append(os.path.basename(f)[3:-2])
252             else:
253                 new_linkflags.append(f)
254
255         conf.env.STLIB_WXWIDGETS = stlibs
256         conf.env.LINKFLAGS_WXWIDGETS = new_linkflags
257         conf.env.STLIBPATH_WXWIDGETS = stlib_paths
258
259     conf.in_msg = 1
260     wx_version = conf.check_cfg(package='wxwidgets', path=wx_config, args='--version').strip()
261     conf.in_msg = 0
262     if not wx_version.startswith('3.'):
263         conf.fatal('wxwidgets version 3.x.y is required; %s found' % wx_version)
264
265     config = conf.check_cfg(package='wxwidgets', path=wx_config, args='--selected-config').strip()
266     if config.find('gtk2') != -1:
267         conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
268
269     try:
270         conf.check_cfg(msg='Checking for RtAudio using pkg-config',
271                        package='rtaudio',
272                        args='--cflags --libs',
273                        uselib_store='RTAUDIO',
274                        mandatory=True)
275     except:
276         conf.check_cfg(msg='Checking for RtAudio headers using rtaudio-config',
277                        package='',
278                        path='rtaudio-config',
279                        args='--cppflags',
280                        uselib_store='RTAUDIO',
281                        mandatory=True)
282
283         conf.check_cfg(msg='Checking for RtAudio libraries using rtaudio-config',
284                        package='',
285                        path='rtaudio-config',
286                        args='--libs',
287                        uselib_store='RTAUDIO',
288                        mandatory=True)
289
290     # Some rtaudio-configs don't include rtaudio as a link library.  Go figure.
291     conf.env.LIB_RTAUDIO.append('rtaudio')
292     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
293         # Don't explicitly link with pthread on Windows
294         conf.env.CFLAGS_RTAUDIO.remove('-pthread')
295         conf.env.LINKFLAGS_RTAUDIO.remove('-pthread')
296         # We need some libraries for WASAPI
297         conf.env.LIB_RTAUDIO.append('mfplat')
298         conf.env.LIB_RTAUDIO.append('mfuuid')
299         conf.env.LIB_RTAUDIO.append('wmcodecdspuuid')
300
301     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32 or conf.env.TARGET_LINUX:
302         conf.check_cfg(package='gl', args='--cflags --libs', uselib_store='GL', mandatory=True)
303         conf.check_cfg(package='glu', args='--cflags --libs', uselib_store='GLU', mandatory=True)
304         if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
305             conf.check_cfg(package='glew', args='--cflags --libs', uselib_store='GLEW', mandatory=True)
306     else:
307         conf.env.STLIB_GL = 'gl'
308         conf.env.STLIB_GLU = 'glu'
309
310     if conf.env.TARGET_LINUX:
311         conf.check_cxx(fragment="""
312                                 #include <wx/glcanvas.h>
313                                 #include <GL/glu.h>
314                                 #include <GL/glext.h>
315                                 #include <GL/glxext.h>
316                                 int main() {
317                                     glXSwapIntervalEXT (0, 0, 1);
318                                     return 0;
319                                 }
320                                 """,
321                        msg='Checking for glXSwapIntervalEXT',
322                        okmsg='yes',
323                        uselib='GL WXWIDGETS',
324                        define_name='DCPOMATIC_HAVE_GLX_SWAP_INTERVAL_EXT',
325                        mandatory=False)
326
327
328 def build(bld):
329     if bld.env.STATIC_DCPOMATIC:
330         obj = bld(features='cxx cxxstlib')
331     else:
332         obj = bld(features='cxx cxxshlib')
333
334     obj.name   = 'libdcpomatic2-wx'
335     obj.export_includes = ['..']
336     obj.uselib = 'BOOST_FILESYSTEM BOOST_THREAD BOOST_REGEX WXWIDGETS DCP SUB ZIP CXML RTAUDIO ICU '
337     if bld.env.TARGET_LINUX:
338         obj.uselib += 'GTK GL GLU '
339     if bld.env.TARGET_WINDOWS_64 or bld.env.TARGET_WINDOWS_32:
340         obj.uselib += 'WINSOCK2 OLE32 DSOUND WINMM KSUSER GL GLU GLEW '
341     if bld.env.TARGET_OSX:
342         obj.framework = ['CoreAudio', 'OpenGL']
343     obj.use = 'libdcpomatic2'
344     obj.source = sources
345     obj.target = 'dcpomatic2-wx'
346
347     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdcpomatic2-wx', bld)
348
349 def pot(bld):
350     i18n.pot(os.path.join('src', 'wx'), sources + " editable_list.h content_widget.h", 'libdcpomatic-wx')
351
352 def pot_merge(bld):
353     i18n.pot_merge(os.path.join('src', 'wx'), 'libdcpomatic-wx')