Try to fix build; link failure of FontConfig.
[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           curl_uploader.cc
41           data.cc
42           dcp_content.cc
43           dcp_content_type.cc
44           dcp_decoder.cc
45           dcp_examiner.cc
46           dcp_subtitle.cc
47           dcp_subtitle_content.cc
48           dcp_subtitle_decoder.cc
49           dcp_video.cc
50           dcpomatic_socket.cc
51           dcpomatic_time.cc
52           dolby_cp750.cc
53           encoder.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_subtitles.cc
88           player_video.cc
89           playlist.cc
90           position_image.cc
91           quickmail.cc
92           ratio.cc
93           raw_image_proxy.cc
94           render_subtitles.cc
95           resampler.cc
96           safe_stringstream.cc
97           scoped_temporary.cc
98           scp_uploader.cc
99           screen.cc
100           send_kdm_email_job.cc
101           send_problem_report_job.cc
102           server.cc
103           server_finder.cc
104           single_stream_audio_content.cc
105           sndfile_base.cc
106           sndfile_content.cc
107           sndfile_decoder.cc
108           sndfile_examiner.cc
109           subrip.cc
110           subrip_content.cc
111           subrip_decoder.cc
112           subtitle_content.cc
113           subtitle_decoder.cc
114           timer.cc
115           transcode_job.cc
116           transcoder.cc
117           types.cc
118           signal_manager.cc
119           update.cc
120           upload_job.cc
121           uploader.cc
122           upmixer_a.cc
123           util.cc
124           video_content.cc
125           video_content_scale.cc
126           video_decoder.cc
127           writer.cc
128           """
129
130 def build(bld):
131     if bld.env.STATIC_DCPOMATIC:
132         obj = bld(features = 'cxx cxxstlib')
133     else:
134         obj = bld(features = 'cxx cxxshlib')
135
136     obj.name = 'libdcpomatic2'
137     obj.export_includes = ['..']
138     obj.uselib = """
139                  AVCODEC AVUTIL AVFORMAT AVFILTER SWSCALE SWRESAMPLE
140                  BOOST_FILESYSTEM BOOST_THREAD BOOST_DATETIME BOOST_SIGNALS2 BOOST_REGEX
141                  SNDFILE OPENJPEG POSTPROC TIFF MAGICK SSH DCP CXML GLIB LZMA XML++
142                  CURL ZIP FONTCONFIG PANGOMM CAIROMM XMLSEC SUB
143                  """
144
145     if bld.env.TARGET_OSX:
146         obj.framework = ['IOKit', 'Foundation']
147
148     obj.source = sources + ' version.cc'
149
150     if bld.env.TARGET_WINDOWS:
151         obj.uselib += ' WINSOCK2 BFD DBGHELP IBERTY SHLWAPI MSWSOCK BOOST_LOCALE'
152     if bld.env.STATIC_DCPOMATIC:
153         obj.uselib += ' XMLPP'
154
155     obj.target = 'dcpomatic2'
156
157     i18n.po_to_mo(os.path.join('src', 'lib'), 'libdcpomatic2', bld)
158
159 def pot(bld):
160     i18n.pot(os.path.join('src', 'lib'), sources, 'libdcpomatic')
161
162 def pot_merge(bld):
163     i18n.pot_merge(os.path.join('src', 'lib'), 'libdcpomatic')