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