Tidy up a bit; vertical white space, group metadata together,
[libdcp.git] / src / wscript
1 #
2 #    Copyright (C) 2012-2019 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              asset.cc
38              asset_factory.cc
39              asset_writer.cc
40              atmos_asset.cc
41              atmos_asset_writer.cc
42              bitstream.cc
43              certificate_chain.cc
44              certificate.cc
45              chromaticity.cc
46              colour_conversion.cc
47              combine.cc
48              cpl.cc
49              data.cc
50              dcp.cc
51              dcp_time.cc
52              decrypted_kdm.cc
53              decrypted_kdm_key.cc
54              encrypted_kdm.cc
55              exceptions.cc
56              file.cc
57              font_asset.cc
58              fsk.cc
59              gamma_transfer_function.cc
60              identity_transfer_function.cc
61              interop_load_font_node.cc
62              interop_subtitle_asset.cc
63              j2k.cc
64              key.cc
65              language_tag.cc
66              local_time.cc
67              locale_convert.cc
68              metadata.cc
69              modified_gamma_transfer_function.cc
70              mono_picture_asset.cc
71              mono_picture_asset_writer.cc
72              mono_picture_frame.cc
73              mxf.cc
74              name_format.cc
75              object.cc
76              openjpeg_image.cc
77              picture_asset.cc
78              picture_asset_writer.cc
79              pkl.cc
80              raw_convert.cc
81              reel.cc
82              reel_asset.cc
83              reel_atmos_asset.cc
84              reel_closed_caption_asset.cc
85              reel_mono_picture_asset.cc
86              reel_mxf.cc
87              reel_picture_asset.cc
88              reel_markers_asset.cc
89              reel_sound_asset.cc
90              reel_stereo_picture_asset.cc
91              reel_subtitle_asset.cc
92              ref.cc
93              rgb_xyz.cc
94              s_gamut3_transfer_function.cc
95              smpte_load_font_node.cc
96              smpte_subtitle_asset.cc
97              sound_asset.cc
98              sound_asset_writer.cc
99              sound_frame.cc
100              stereo_picture_asset.cc
101              stereo_picture_asset_writer.cc
102              stereo_picture_frame.cc
103              subtitle.cc
104              subtitle_asset.cc
105              subtitle_asset_internal.cc
106              subtitle_image.cc
107              subtitle_string.cc
108              transfer_function.cc
109              types.cc
110              util.cc
111              verify.cc
112              version.cc
113              """
114
115     headers = """
116               asset.h
117               asset_reader.h
118               asset_writer.h
119               atmos_asset.h
120               atmos_asset_reader.h
121               atmos_asset_writer.h
122               atmos_frame.h
123               certificate_chain.h
124               certificate.h
125               chromaticity.h
126               colour_conversion.h
127               combine.h
128               compose.hpp
129               cpl.h
130               crypto_context.h
131               dcp.h
132               dcp_assert.h
133               dcp_time.h
134               data.h
135               decrypted_kdm.h
136               decrypted_kdm_key.h
137               encrypted_kdm.h
138               exceptions.h
139               font_asset.h
140               frame.h
141               fsk.h
142               gamma_transfer_function.h
143               identity_transfer_function.h
144               interop_load_font_node.h
145               interop_subtitle_asset.h
146               j2k.h
147               key.h
148               language_tag.h
149               load_font_node.h
150               local_time.h
151               locale_convert.h
152               metadata.h
153               mono_picture_asset.h
154               mono_picture_asset_reader.h
155               mono_picture_frame.h
156               modified_gamma_transfer_function.h
157               mxf.h
158               name_format.h
159               object.h
160               openjpeg_image.h
161               picture_asset.h
162               picture_asset_writer.h
163               pkl.h
164               raw_convert.h
165               rgb_xyz.h
166               reel.h
167               reel_asset.h
168               reel_atmos_asset.h
169               reel_closed_caption_asset.h
170               reel_markers_asset.h
171               reel_mono_picture_asset.h
172               reel_mxf.h
173               reel_picture_asset.h
174               reel_sound_asset.h
175               reel_stereo_picture_asset.h
176               reel_subtitle_asset.h
177               ref.h
178               s_gamut3_transfer_function.h
179               smpte_load_font_node.h
180               smpte_subtitle_asset.h
181               sound_frame.h
182               sound_asset.h
183               sound_asset_reader.h
184               sound_asset_writer.h
185               stereo_picture_asset.h
186               stereo_picture_asset_reader.h
187               stereo_picture_asset_writer.h
188               stereo_picture_frame.h
189               subtitle.h
190               subtitle_asset.h
191               subtitle_image.h
192               subtitle_string.h
193               transfer_function.h
194               types.h
195               util.h
196               verify.h
197               version.h
198               """
199
200     # Main library
201     if bld.env.STATIC:
202         obj = bld(features='cxx cxxstlib')
203     else:
204         obj = bld(features='cxx cxxshlib')
205     obj.name = 'libdcp%s' % bld.env.API_VERSION
206     obj.target = 'dcp%s' % bld.env.API_VERSION
207     obj.export_includes = ['.']
208     obj.uselib = 'BOOST_FILESYSTEM BOOST_SIGNALS2 BOOST_DATETIME OPENSSL SIGC++ LIBXML++ OPENJPEG CXML XMLSEC1 ASDCPLIB_CTH XERCES'
209     obj.source = source
210
211     # Library for gcov
212     if bld.is_defined('HAVE_GCOV'):
213         if bld.env.STATIC:
214             obj = bld(features='cxx cxxstlib')
215         else:
216             obj = bld(features='cxx cxxshlib')
217         obj.name = 'libdcp%s_gcov' % bld.env.API_VERSION
218         obj.target = 'dcp%s_gcov' % bld.env.API_VERSION
219         obj.export_includes = ['.']
220         obj.uselib = 'BOOST_FILESYSTEM BOOST_SIGNALS2 BOOST_DATETIME OPENSSL SIGC++ LIBXML++ OPENJPEG CXML XMLSEC1 ASDCPLIB_CTH XERCES'
221         obj.use = 'libkumu-libdcp%s libasdcp-libdcp%s' % (bld.env.API_VERSION, bld.env.API_VERSION)
222         obj.source = source
223         obj.cppflags = ['-fprofile-arcs', '-ftest-coverage', '-fno-inline', '-fno-default-inline', '-fno-elide-constructors', '-g', '-O0']
224
225     bld.install_files('${PREFIX}/include/libdcp%s/dcp' % bld.env.API_VERSION, headers)
226     if bld.env.STATIC:
227         bld.install_files('${PREFIX}/lib', 'libdcp%s.a' % bld.env.API_VERSION)