Rearrange cerficate download UI a bit.
[dcpomatic.git] / src / wx / wscript
1 #
2 #    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3 #
4 #    This program is free software; you can redistribute it and/or modify
5 #    it under the terms of the GNU General Public License as published by
6 #    the Free Software Foundation; either version 2 of the License, or
7 #    (at your option) any later version.
8 #
9 #    This program is distributed in the hope that it will be useful,
10 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #    GNU General Public License for more details.
13 #
14 #    You should have received a copy of the GNU General Public License
15 #    along with this program; if not, write to the Free Software
16 #    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 #
18
19 import os
20 import subprocess
21 import shlex
22 import glob
23 from waflib import Logs
24 import i18n
25
26 sources = """
27           about_dialog.cc
28           audio_dialog.cc
29           audio_gain_dialog.cc
30           audio_mapping_view.cc
31           audio_panel.cc
32           audio_plot.cc
33           cinema_dialog.cc
34           colour_conversion_editor.cc
35           config_dialog.cc
36           content_colour_conversion_dialog.cc
37           content_menu.cc
38           content_panel.cc
39           content_properties_dialog.cc
40           content_sub_panel.cc
41           dcp_panel.cc
42           email_dialog.cc
43           image_sequence_dialog.cc
44           isdcf_metadata_dialog.cc
45           dir_picker_ctrl.cc
46           dolby_certificate_panel.cc
47           doremi_certificate_panel.cc
48           download_certificate_dialog.cc
49           download_certificate_panel.cc
50           file_picker_ctrl.cc
51           film_editor.cc
52           film_viewer.cc
53           filter_dialog.cc
54           filter_editor.cc
55           fonts_dialog.cc
56           font_files_dialog.cc
57           gain_calculator_dialog.cc
58           hints_dialog.cc
59           job_view.cc
60           job_view_dialog.cc
61           job_manager_view.cc
62           kdm_dialog.cc
63           kdm_output_panel.cc
64           kdm_timing_panel.cc
65           key_dialog.cc
66           make_chain_dialog.cc
67           new_film_dialog.cc
68           preset_colour_conversion_dialog.cc
69           repeat_dialog.cc
70           report_problem_dialog.cc
71           screen_dialog.cc
72           screens_panel.cc
73           server_dialog.cc
74           servers_list_dialog.cc
75           subtitle_appearance_dialog.cc
76           subtitle_panel.cc
77           subtitle_view.cc
78           system_font_dialog.cc
79           table_dialog.cc
80           timecode.cc
81           timeline.cc
82           timeline_content_view.cc
83           timeline_dialog.cc
84           timeline_audio_content_view.cc
85           timeline_subtitle_content_view.cc
86           timeline_reels_view.cc
87           timeline_time_axis_view.cc
88           timeline_video_content_view.cc
89           timeline_view.cc
90           timing_panel.cc
91           update_dialog.cc
92           video_panel.cc
93           video_waveform_dialog.cc
94           video_waveform_plot.cc
95           wx_util.cc
96           wx_signal_manager.cc
97           """
98
99 def configure(conf):
100     try:
101         wx_config = 'wx-config-3.0-gtk2'
102         conf.check_cfg(msg='Checking for wxWidgets',
103                        package='',
104                        path=wx_config,
105                        args='--cppflags --cxxflags --libs std,richtext',
106                        uselib_store='WXWIDGETS',
107                        mandatory=True)
108     except:
109         wx_config = 'wx-config'
110         conf.check_cfg(msg='Checking for wxWidgets',
111                        package='',
112                        path=wx_config,
113                        args='--cppflags --cxxflags --libs std,richtext',
114                        uselib_store='WXWIDGETS',
115                        mandatory=True)
116
117     if conf.options.static_wxwidgets:
118         # wx-config returns its static libraries as full paths, without -l prefixes, which confuses
119         # check_cfg().  It puts the static libraries into LINKFLAGS_WXWIDGETS, so fish them out.
120         stlibs = []
121         new_linkflags = []
122         stlib_paths = []
123         for f in conf.env.LINKFLAGS_WXWIDGETS:
124             if f.startswith('/'):
125                 d = os.path.dirname(f)
126                 if not d in stlib_paths:
127                     stlib_paths.append(d)
128                 stlibs.append(os.path.basename(f)[3:-2])
129             else:
130                 new_linkflags.append(f)
131
132         conf.env.STLIB_WXWIDGETS = stlibs
133         conf.env.LINKFLAGS_WXWIDGETS = new_linkflags
134         conf.env.STLIBPATH_WXWIDGETS = stlib_paths
135
136     conf.in_msg = 1
137     wx_version = conf.check_cfg(package='', path=wx_config, args='--version').strip()
138     conf.im_msg = 0
139     if not wx_version.startswith('3.0.'):
140         conf.fatal('wxwidgets version 3.0.x is required; %s found' % wx_version)
141
142 def build(bld):
143     if bld.env.STATIC_DCPOMATIC:
144         obj = bld(features = 'cxx cxxstlib')
145     else:
146         obj = bld(features = 'cxx cxxshlib')
147
148     obj.name   = 'libdcpomatic2-wx'
149     obj.export_includes = ['..']
150     obj.uselib = 'BOOST_FILESYSTEM BOOST_THREAD BOOST_REGEX WXWIDGETS DCP SUB ZIP '
151     if bld.env.TARGET_LINUX:
152         obj.uselib += 'GTK '
153     if bld.env.TARGET_WINDOWS:
154         obj.uselib += 'WINSOCK2 '
155     obj.use = 'libdcpomatic2'
156     obj.source = sources
157     obj.target = 'dcpomatic2-wx'
158
159     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdcpomatic2-wx', bld)
160
161 def pot(bld):
162     i18n.pot(os.path.join('src', 'wx'), sources + " editable_list.h", 'libdcpomatic-wx')
163
164 def pot_merge(bld):
165     i18n.pot_merge(os.path.join('src', 'wx'), 'libdcpomatic-wx')