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