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