Add FontData class.
[dcpomatic.git] / src / lib / wscript
1 #
2 #    Copyright (C) 2012-2020 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 i18n
22
23 sources = """
24           active_text.cc
25           analyse_audio_job.cc
26           analyse_subtitles_job.cc
27           analytics.cc
28           atmos_content.cc
29           atmos_mxf_content.cc
30           atmos_decoder.cc
31           atmos_metadata.cc
32           atmos_mxf_decoder.cc
33           audio_analysis.cc
34           audio_buffers.cc
35           audio_content.cc
36           audio_decoder.cc
37           audio_delay.cc
38           audio_filter.cc
39           audio_filter_graph.cc
40           audio_mapping.cc
41           audio_merger.cc
42           audio_point.cc
43           audio_processor.cc
44           audio_ring_buffers.cc
45           audio_stream.cc
46           butler.cc
47           text_content.cc
48           text_decoder.cc
49           case_insensitive_sorter.cc
50           check_content_change_job.cc
51           cinema.cc
52           cinema_sound_processor.cc
53           colour_conversion.cc
54           config.cc
55           content.cc
56           content_factory.cc
57           combine_dcp_job.cc
58           copy_dcp_details_to_film.cc
59           create_cli.cc
60           cross_common.cc
61           crypto.cc
62           curl_uploader.cc
63           datasat_ap2x.cc
64           dcp.cc
65           dcp_content.cc
66           dcp_content_type.cc
67           dcp_decoder.cc
68           dcp_encoder.cc
69           dcp_examiner.cc
70           dcp_subtitle.cc
71           dcp_subtitle_content.cc
72           dcp_subtitle_decoder.cc
73           dcp_text_track.cc
74           dcp_video.cc
75           dcpomatic_log.cc
76           dcpomatic_socket.cc
77           dcpomatic_time.cc
78           decoder.cc
79           decoder_factory.cc
80           decoder_part.cc
81           digester.cc
82           dkdm_recipient.cc
83           dkdm_wrapper.cc
84           dolby_cp750.cc
85           edid.cc
86           emailer.cc
87           empty.cc
88           encoder.cc
89           encode_server.cc
90           encode_server_finder.cc
91           encoded_log_entry.cc
92           environment_info.cc
93           event_history.cc
94           examine_content_job.cc
95           examine_ffmpeg_subtitles_job.cc
96           exceptions.cc
97           file_group.cc
98           file_log.cc
99           filter_graph.cc
100           ffmpeg.cc
101           ffmpeg_audio_stream.cc
102           ffmpeg_content.cc
103           ffmpeg_decoder.cc
104           ffmpeg_encoder.cc
105           ffmpeg_file_encoder.cc
106           ffmpeg_examiner.cc
107           ffmpeg_stream.cc
108           ffmpeg_subtitle_stream.cc
109           film.cc
110           filter.cc
111           ffmpeg_image_proxy.cc
112           font.cc
113           font_data.cc
114           frame_interval_checker.cc
115           frame_rate_change.cc
116           hints.cc
117           internet.cc
118           image.cc
119           image_content.cc
120           image_decoder.cc
121           image_examiner.cc
122           image_filename_sorter.cc
123           image_proxy.cc
124           isdcf_metadata.cc
125           j2k_image_proxy.cc
126           job.cc
127           job_manager.cc
128           j2k_encoder.cc
129           json_server.cc
130           kdm_with_metadata.cc
131           kdm_recipient.cc
132           log.cc
133           log_entry.cc
134           mid_side_decoder.cc
135           overlaps.cc
136           player.cc
137           player_text.cc
138           player_video.cc
139           playlist.cc
140           position_image.cc
141           ratio.cc
142           raw_image_proxy.cc
143           reel_writer.cc
144           render_text.cc
145           resampler.cc
146           rgba.cc
147           scoped_temporary.cc
148           scp_uploader.cc
149           screen.cc
150           send_kdm_email_job.cc
151           send_notification_email_job.cc
152           send_problem_report_job.cc
153           server.cc
154           shuffler.cc
155           state.cc
156           spl.cc
157           spl_entry.cc
158           string_log_entry.cc
159           string_text_file.cc
160           string_text_file_content.cc
161           string_text_file_decoder.cc
162           subtitle_analysis.cc
163           subtitle_encoder.cc
164           text_ring_buffers.cc
165           timer.cc
166           transcode_job.cc
167           trusted_device.cc
168           types.cc
169           signal_manager.cc
170           stdout_log.cc
171           update_checker.cc
172           upload_job.cc
173           uploader.cc
174           upmixer_a.cc
175           upmixer_b.cc
176           usl.cc
177           util.cc
178           verify_dcp_job.cc
179           video_content.cc
180           video_decoder.cc
181           video_filter_graph.cc
182           video_mxf_content.cc
183           video_mxf_decoder.cc
184           video_mxf_examiner.cc
185           video_ring_buffers.cc
186           writer.cc
187           zipper.cc
188           """
189
190 def build(bld):
191     if bld.env.STATIC_DCPOMATIC:
192         obj = bld(features = 'cxx cxxstlib')
193     else:
194         obj = bld(features = 'cxx cxxshlib')
195
196     obj.name = 'libdcpomatic2'
197     obj.export_includes = ['..']
198     obj.uselib = """
199                  AVCODEC AVUTIL AVFORMAT AVFILTER SWSCALE
200                  BOOST_FILESYSTEM BOOST_THREAD BOOST_DATETIME BOOST_SIGNALS2 BOOST_REGEX
201                  SAMPLERATE POSTPROC TIFF SSH DCP CXML GLIB LZMA XML++
202                  CURL ZIP FONTCONFIG PANGOMM CAIROMM XMLSEC SUB ICU NETTLE PNG LEQM_NRT
203                  """
204
205     if bld.env.TARGET_OSX:
206         obj.framework = ['IOKit', 'Foundation', 'DiskArbitration', 'ApplicationServices']
207
208     obj.source = sources + ' version.cc'
209
210     if bld.env.ENABLE_DISK:
211         obj.source += ' copy_to_drive_job.cc ext.cc nanomsg.cc'
212         obj.uselib += ' LWEXT4 NANOMSG'
213         if bld.env.TARGET_LINUX:
214             obj.uselib += ' POLKIT'
215
216     if bld.env.TARGET_WINDOWS:
217         obj.uselib += ' WINSOCK2 DBGHELP SHLWAPI MSWSOCK BOOST_LOCALE SETUPAPI'
218         obj.source += ' cross_windows.cc'
219     if bld.env.TARGET_OSX:
220         obj.source += ' cross_osx.cc'
221     if bld.env.TARGET_LINUX:
222         obj.source += ' cross_linux.cc'
223     if bld.env.STATIC_DCPOMATIC:
224         obj.uselib += ' XMLPP'
225
226     obj.target = 'dcpomatic2'
227
228     i18n.po_to_mo(os.path.join('src', 'lib'), 'libdcpomatic2', bld)
229
230 def pot(bld):
231     i18n.pot(os.path.join('src', 'lib'), sources + " util.h", 'libdcpomatic')
232
233 def pot_merge(bld):
234     i18n.pot_merge(os.path.join('src', 'lib'), 'libdcpomatic')