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