Replace quickmail with a direct (and asynchronous) libcurl email sender.
[dcpomatic.git] / src / lib / 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 i18n
21
22 sources = """
23           analyse_audio_job.cc
24           audio_analysis.cc
25           audio_buffers.cc
26           audio_content.cc
27           audio_decoder.cc
28           audio_decoder_stream.cc
29           audio_delay.cc
30           audio_filter.cc
31           audio_mapping.cc
32           audio_point.cc
33           audio_processor.cc
34           audio_stream.cc
35           cinema.cc
36           cinema_kdms.cc
37           cinema_sound_processor.cc
38           colour_conversion.cc
39           config.cc
40           content.cc
41           content_factory.cc
42           cross.cc
43           curl_uploader.cc
44           data.cc
45           dcp_content.cc
46           dcp_content_type.cc
47           dcp_decoder.cc
48           dcp_examiner.cc
49           dcp_subtitle.cc
50           dcp_subtitle_content.cc
51           dcp_subtitle_decoder.cc
52           dcp_video.cc
53           dcpomatic_socket.cc
54           dcpomatic_time.cc
55           dolby_cp750.cc
56           emailer.cc
57           encoder.cc
58           environment_info.cc
59           examine_content_job.cc
60           exceptions.cc
61           file_group.cc
62           file_log.cc
63           filter_graph.cc
64           ffmpeg.cc
65           ffmpeg_audio_stream.cc
66           ffmpeg_content.cc
67           ffmpeg_decoder.cc
68           ffmpeg_examiner.cc
69           ffmpeg_stream.cc
70           ffmpeg_subtitle_stream.cc
71           film.cc
72           filter.cc
73           font.cc
74           frame_rate_change.cc
75           internet.cc
76           image.cc
77           image_content.cc
78           image_decoder.cc
79           image_examiner.cc
80           image_proxy.cc
81           isdcf_metadata.cc
82           j2k_image_proxy.cc
83           job.cc
84           job_manager.cc
85           json_server.cc
86           log.cc
87           magick_image_proxy.cc
88           md5_digester.cc
89           mid_side_decoder.cc
90           player.cc
91           player_subtitles.cc
92           player_video.cc
93           playlist.cc
94           position_image.cc
95           ratio.cc
96           raw_image_proxy.cc
97           render_subtitles.cc
98           resampler.cc
99           safe_stringstream.cc
100           scoped_temporary.cc
101           scp_uploader.cc
102           screen.cc
103           screen_kdm.cc
104           send_kdm_email_job.cc
105           send_problem_report_job.cc
106           server.cc
107           server_finder.cc
108           single_stream_audio_content.cc
109           sndfile_base.cc
110           sndfile_content.cc
111           sndfile_decoder.cc
112           sndfile_examiner.cc
113           subrip.cc
114           subrip_content.cc
115           subrip_decoder.cc
116           subtitle_content.cc
117           subtitle_decoder.cc
118           timer.cc
119           transcode_job.cc
120           transcoder.cc
121           types.cc
122           signal_manager.cc
123           update_checker.cc
124           upload_job.cc
125           uploader.cc
126           upmixer_a.cc
127           upmixer_b.cc
128           util.cc
129           video_content.cc
130           video_content_scale.cc
131           video_decoder.cc
132           writer.cc
133           """
134
135 def build(bld):
136     if bld.env.STATIC_DCPOMATIC:
137         obj = bld(features = 'cxx cxxstlib')
138     else:
139         obj = bld(features = 'cxx cxxshlib')
140
141     obj.name = 'libdcpomatic2'
142     obj.export_includes = ['..']
143     obj.uselib = """
144                  AVCODEC AVUTIL AVFORMAT AVFILTER SWSCALE
145                  BOOST_FILESYSTEM BOOST_THREAD BOOST_DATETIME BOOST_SIGNALS2 BOOST_REGEX
146                  SNDFILE SAMPLERATE OPENJPEG POSTPROC TIFF MAGICK SSH DCP CXML GLIB LZMA XML++
147                  CURL ZIP FONTCONFIG PANGOMM CAIROMM XMLSEC SUB ICU
148                  """
149
150     if bld.env.TARGET_OSX:
151         obj.framework = ['IOKit', 'Foundation']
152
153     obj.source = sources + ' version.cc'
154
155     if bld.env.TARGET_WINDOWS:
156         obj.uselib += ' WINSOCK2 BFD DBGHELP IBERTY SHLWAPI MSWSOCK BOOST_LOCALE'
157     if bld.env.STATIC_DCPOMATIC:
158         obj.uselib += ' XMLPP'
159
160     obj.target = 'dcpomatic2'
161
162     i18n.po_to_mo(os.path.join('src', 'lib'), 'libdcpomatic2', bld)
163
164 def pot(bld):
165     i18n.pot(os.path.join('src', 'lib'), sources, 'libdcpomatic')
166
167 def pot_merge(bld):
168     i18n.pot_merge(os.path.join('src', 'lib'), 'libdcpomatic')