Basic implementation of a tree view for DKDMs (#1012).
[dcpomatic.git] / src / wx / wscript
1 #
2 #    Copyright (C) 2012-2015 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           batch_job_view.cc
35           cinema_dialog.cc
36           colour_conversion_editor.cc
37           config_dialog.cc
38           confirm_kdm_email_dialog.cc
39           content_colour_conversion_dialog.cc
40           content_menu.cc
41           content_panel.cc
42           content_properties_dialog.cc
43           content_sub_panel.cc
44           dcp_panel.cc
45           email_dialog.cc
46           image_sequence_dialog.cc
47           isdcf_metadata_dialog.cc
48           dir_picker_ctrl.cc
49           dolby_doremi_certificate_panel.cc
50           download_certificate_dialog.cc
51           download_certificate_panel.cc
52           export_dialog.cc
53           file_picker_ctrl.cc
54           film_editor.cc
55           film_name_location_dialog.cc
56           film_viewer.cc
57           filter_dialog.cc
58           filter_editor.cc
59           fonts_dialog.cc
60           font_files_dialog.cc
61           gain_calculator_dialog.cc
62           hints_dialog.cc
63           job_view.cc
64           job_view_dialog.cc
65           job_manager_view.cc
66           kdm_cpl_panel.cc
67           kdm_dialog.cc
68           kdm_output_panel.cc
69           kdm_timing_panel.cc
70           key_dialog.cc
71           make_chain_dialog.cc
72           move_to_dialog.cc
73           nag_dialog.cc
74           name_format_editor.cc
75           new_dkdm_folder_dialog.cc
76           normal_job_view.cc
77           playhead_to_timecode_dialog.cc
78           playhead_to_frame_dialog.cc
79           repeat_dialog.cc
80           report_problem_dialog.cc
81           rename_template_dialog.cc
82           rgba_colour_picker.cc
83           save_template_dialog.cc
84           screen_dialog.cc
85           screens_panel.cc
86           self_dkdm_dialog.cc
87           server_dialog.cc
88           servers_list_dialog.cc
89           subtitle_appearance_dialog.cc
90           subtitle_panel.cc
91           subtitle_view.cc
92           system_font_dialog.cc
93           table_dialog.cc
94           templates_dialog.cc
95           time_picker.cc
96           timecode.cc
97           timeline.cc
98           timeline_atmos_content_view.cc
99           timeline_content_view.cc
100           timeline_dialog.cc
101           timeline_audio_content_view.cc
102           timeline_labels_view.cc
103           timeline_subtitle_content_view.cc
104           timeline_reels_view.cc
105           timeline_time_axis_view.cc
106           timeline_video_content_view.cc
107           timeline_view.cc
108           timing_panel.cc
109           update_dialog.cc
110           video_panel.cc
111           video_waveform_dialog.cc
112           video_waveform_plot.cc
113           wx_util.cc
114           wx_signal_manager.cc
115           """
116
117 def configure(conf):
118     try:
119         wx_config = 'wx-config-3.0-gtk2'
120         conf.check_cfg(msg='Checking for wxWidgets using wx-config-3.0-gtk2',
121                        package='',
122                        path=wx_config,
123                        args='--cppflags --cxxflags --libs std,richtext',
124                        uselib_store='WXWIDGETS',
125                        mandatory=True)
126     except:
127         wx_config = 'wx-config'
128         conf.check_cfg(msg='Checking for wxWidgets using wx-config',
129                        package='',
130                        path=wx_config,
131                        args='--cppflags --cxxflags --libs std,richtext',
132                        uselib_store='WXWIDGETS',
133                        mandatory=True)
134
135     if conf.options.static_wxwidgets:
136         # wx-config returns its static libraries as full paths, without -l prefixes, which confuses
137         # check_cfg().  It puts the static libraries into LINKFLAGS_WXWIDGETS, so fish them out.
138         stlibs = []
139         new_linkflags = []
140         stlib_paths = []
141         for f in conf.env.LINKFLAGS_WXWIDGETS:
142             if f.startswith('/'):
143                 d = os.path.dirname(f)
144                 if not d in stlib_paths:
145                     stlib_paths.append(d)
146                 stlibs.append(os.path.basename(f)[3:-2])
147             else:
148                 new_linkflags.append(f)
149
150         conf.env.STLIB_WXWIDGETS = stlibs
151         conf.env.LINKFLAGS_WXWIDGETS = new_linkflags
152         conf.env.STLIBPATH_WXWIDGETS = stlib_paths
153
154     conf.in_msg = 1
155     wx_version = conf.check_cfg(package='', path=wx_config, args='--version').strip()
156     conf.im_msg = 0
157     if not wx_version.startswith('3.0.'):
158         conf.fatal('wxwidgets version 3.0.x is required; %s found' % wx_version)
159
160     try:
161         conf.check_cfg(msg='Checking for RtAudio using pkg-config',
162                        package='rtaudio',
163                        args='--cflags --libs',
164                        uselib_store='RTAUDIO',
165                        mandatory=True)
166     except:
167         conf.check_cfg(msg='Checking for RtAudio headers using rtaudio-config',
168                        package='',
169                        path='rtaudio-config',
170                        args='--cppflags',
171                        uselib_store='RTAUDIO',
172                        mandatory=True)
173
174         conf.check_cfg(msg='Checking for RtAudio libraries using rtaudio-config',
175                        package='',
176                        path='rtaudio-config',
177                        args='--libs',
178                        uselib_store='RTAUDIO',
179                        mandatory=True)
180
181     # Some rtaudio-configs don't include rtaudio as a link library.  Go figure.
182     conf.env.LIB_RTAUDIO.append('rtaudio')
183     # Don't explicitly link with pthread on Windows
184     if conf.env.TARGET_WINDOWS:
185         conf.env.CFLAGS_RTAUDIO.remove('-pthread')
186         conf.env.LINKFLAGS_RTAUDIO.remove('-pthread')
187
188     conf.check_cxx(fragment="""
189                             #include <RtAudio.h>\n
190                             int main() { throw RtError("Hello"); }
191                             """,
192                    msg='Checking for RtError class',
193                    libpath='/usr/local/lib',
194                    lib=['rtaudio'],
195                    uselib_store='',
196                    define_name='DCPOMATIC_USE_RTERROR',
197                    mandatory=False)
198
199
200
201 def build(bld):
202     if bld.env.STATIC_DCPOMATIC:
203         obj = bld(features='cxx cxxstlib')
204     else:
205         obj = bld(features='cxx cxxshlib')
206
207     obj.name   = 'libdcpomatic2-wx'
208     obj.export_includes = ['..']
209     obj.uselib = 'BOOST_FILESYSTEM BOOST_THREAD BOOST_REGEX WXWIDGETS DCP SUB ZIP CXML RTAUDIO '
210     if bld.env.TARGET_LINUX:
211         obj.uselib += 'GTK '
212     if bld.env.TARGET_WINDOWS:
213         obj.uselib += 'WINSOCK2 OLE32 DSOUND WINMM KSUSER '
214     if bld.env.TARGET_OSX:
215         obj.framework = ['CoreAudio']
216     obj.use = 'libdcpomatic2'
217     obj.source = sources
218     obj.target = 'dcpomatic2-wx'
219
220     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdcpomatic2-wx', bld)
221
222 def pot(bld):
223     i18n.pot(os.path.join('src', 'wx'), sources + " editable_list.h content_widget.h", 'libdcpomatic-wx')
224
225 def pot_merge(bld):
226     i18n.pot_merge(os.path.join('src', 'wx'), 'libdcpomatic-wx')