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