Make EqualityOptions into a class.
[libdcp.git] / src / wscript
1 #
2 #    Copyright (C) 2012-2020 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 #    In addition, as a special exception, the copyright holders give
19 #    permission to link the code of portions of this program with the
20 #    OpenSSL library under certain conditions as described in each
21 #    individual source file, and distribute linked combinations
22 #    including the two.
23 #
24 #    You must obey the GNU General Public License in all respects
25 #    for all of the code used other than OpenSSL.  If you modify
26 #    file(s) with this exception, you may extend this exception to your
27 #    version of the file(s), but you are not obligated to do so.  If you
28 #    do not wish to do so, delete this exception statement from your
29 #    version.  If you delete this exception statement from all source
30 #    files in the program, then also delete it here.
31 #
32
33 from waflib import TaskGen
34
35 def build(bld):
36     source = """
37              array_data.cc
38              asset.cc
39              asset_map.cc
40              asset_factory.cc
41              asset_writer.cc
42              atmos_asset.cc
43              atmos_asset_writer.cc
44              bitstream.cc
45              certificate_chain.cc
46              certificate.cc
47              chromaticity.cc
48              colour_conversion.cc
49              combine.cc
50              content_kind.cc
51              cpl.cc
52              data.cc
53              dcp.cc
54              dcp_time.cc
55              decrypted_kdm.cc
56              decrypted_kdm_key.cc
57              encrypted_kdm.cc
58              exceptions.cc
59              file.cc
60              font_asset.cc
61              fsk.cc
62              gamma_transfer_function.cc
63              identity_transfer_function.cc
64              interop_load_font_node.cc
65              interop_subtitle_asset.cc
66              j2k_transcode.cc
67              key.cc
68              language_tag.cc
69              local_time.cc
70              locale_convert.cc
71              metadata.cc
72              modified_gamma_transfer_function.cc
73              mono_picture_asset.cc
74              mono_picture_asset_writer.cc
75              mono_picture_frame.cc
76              mxf.cc
77              name_format.cc
78              object.cc
79              openjpeg_image.cc
80              picture_asset.cc
81              picture_asset_writer.cc
82              pkl.cc
83              rating.cc
84              raw_convert.cc
85              reel.cc
86              reel_asset.cc
87              reel_atmos_asset.cc
88              reel_closed_caption_asset.cc
89              reel_file_asset.cc
90              reel_interop_closed_caption_asset.cc
91              reel_interop_subtitle_asset.cc
92              reel_mono_picture_asset.cc
93              reel_picture_asset.cc
94              reel_markers_asset.cc
95              reel_smpte_closed_caption_asset.cc
96              reel_smpte_subtitle_asset.cc
97              reel_sound_asset.cc
98              reel_stereo_picture_asset.cc
99              reel_subtitle_asset.cc
100              ref.cc
101              rgb_xyz.cc
102              s_gamut3_transfer_function.cc
103              search.cc
104              smpte_load_font_node.cc
105              smpte_subtitle_asset.cc
106              sound_asset.cc
107              sound_asset_writer.cc
108              sound_frame.cc
109              stereo_picture_asset.cc
110              stereo_picture_asset_writer.cc
111              stereo_picture_frame.cc
112              subtitle.cc
113              subtitle_asset.cc
114              subtitle_asset_internal.cc
115              subtitle_image.cc
116              subtitle_standard.cc
117              subtitle_string.cc
118              transfer_function.cc
119              types.cc
120              utc_offset.cc
121              util.cc
122              verify.cc
123              verify_j2k.cc
124              version.cc
125              """
126
127     headers = """
128               array_data.h
129               asset.h
130               asset_list.h
131               asset_map.h
132               asset_reader.h
133               asset_writer.h
134               atmos_asset.h
135               atmos_asset_reader.h
136               atmos_asset_writer.h
137               atmos_frame.h
138               certificate_chain.h
139               certificate.h
140               chromaticity.h
141               colour_conversion.h
142               combine.h
143               compose.hpp
144               content_kind.h
145               cpl.h
146               crypto_context.h
147               data.h
148               dcp.h
149               dcp_assert.h
150               dcp_time.h
151               decrypted_kdm.h
152               decrypted_kdm_key.h
153               encrypted_kdm.h
154               exceptions.h
155               file.h
156               font_asset.h
157               frame.h
158               fsk.h
159               gamma_transfer_function.h
160               identity_transfer_function.h
161               interop_load_font_node.h
162               interop_subtitle_asset.h
163               j2k_transcode.h
164               key.h
165               language_tag.h
166               load_font_node.h
167               local_time.h
168               locale_convert.h
169               metadata.h
170               mono_picture_asset.h
171               mono_picture_asset_reader.h
172               mono_picture_asset_writer.h
173               mono_picture_frame.h
174               modified_gamma_transfer_function.h
175               mxf.h
176               name_format.h
177               object.h
178               openjpeg_image.h
179               picture_asset.h
180               picture_asset_writer.h
181               piecewise_lut.h
182               pkl.h
183               rating.h
184               raw_convert.h
185               rgb_xyz.h
186               reel.h
187               reel_asset.h
188               reel_atmos_asset.h
189               reel_closed_caption_asset.h
190               reel_file_asset.h
191               reel_interop_closed_caption_asset.h
192               reel_interop_subtitle_asset.h
193               reel_markers_asset.h
194               reel_mono_picture_asset.h
195               reel_picture_asset.h
196               reel_sound_asset.h
197               reel_smpte_closed_caption_asset.h
198               reel_smpte_subtitle_asset.h
199               reel_stereo_picture_asset.h
200               reel_subtitle_asset.h
201               ref.h
202               s_gamut3_transfer_function.h
203               search.h
204               smpte_load_font_node.h
205               smpte_subtitle_asset.h
206               sound_frame.h
207               sound_asset.h
208               sound_asset_reader.h
209               sound_asset_writer.h
210               stereo_picture_asset.h
211               stereo_picture_asset_reader.h
212               stereo_picture_asset_writer.h
213               stereo_picture_frame.h
214               subtitle.h
215               subtitle_asset.h
216               subtitle_image.h
217               subtitle_standard.h
218               subtitle_string.h
219               transfer_function.h
220               types.h
221               utc_offset.h
222               util.h
223               verify.h
224               verify_j2k.h
225               version.h
226               warnings.h
227               """
228
229     # Main library
230     if bld.env.STATIC:
231         obj = bld(features='cxx cxxstlib')
232     else:
233         obj = bld(features='cxx cxxshlib')
234     obj.name = 'libdcp%s' % bld.env.API_VERSION
235     obj.target = 'dcp%s' % bld.env.API_VERSION
236     obj.export_includes = ['.']
237     obj.uselib = 'BOOST_FILESYSTEM BOOST_SIGNALS2 BOOST_DATETIME OPENSSL SIGC++ LIBXML++ OPENJPEG CXML XMLSEC1 ASDCPLIB_CTH XERCES'
238     obj.source = source
239
240     # Library for gcov
241     if bld.is_defined('HAVE_GCOV'):
242         if bld.env.STATIC:
243             obj = bld(features='cxx cxxstlib')
244         else:
245             obj = bld(features='cxx cxxshlib')
246         obj.name = 'libdcp%s_gcov' % bld.env.API_VERSION
247         obj.target = 'dcp%s_gcov' % bld.env.API_VERSION
248         obj.export_includes = ['.']
249         obj.uselib = 'BOOST_FILESYSTEM BOOST_SIGNALS2 BOOST_DATETIME OPENSSL SIGC++ LIBXML++ OPENJPEG CXML XMLSEC1 ASDCPLIB_CTH XERCES'
250         obj.use = 'libkumu-libdcp%s libasdcp-libdcp%s' % (bld.env.API_VERSION, bld.env.API_VERSION)
251         obj.source = source
252         obj.cppflags = ['-fprofile-arcs', '-ftest-coverage', '-fno-inline', '-fno-default-inline', '-fno-elide-constructors', '-g', '-O0']
253
254     bld.install_files('${PREFIX}/include/libdcp%s/dcp' % bld.env.API_VERSION, headers)
255     if bld.env.STATIC:
256         bld.install_files('${PREFIX}/lib', 'libdcp%s.a' % bld.env.API_VERSION)