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