X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwscript;h=1d694ec3f84ae21fae0f6c5e8546bb3dab1e9714;hb=7d897b0c9e4a9d479effb89dc9b386abdb9ad212;hp=acbfdfc0268d5ae1e52eeaa10119d074563fbf22;hpb=4313456938d34d93239194e914b82e7a5ae14c1c;p=libdcp.git diff --git a/src/wscript b/src/wscript index acbfdfc0..1d694ec3 100644 --- a/src/wscript +++ b/src/wscript @@ -1,3 +1,5 @@ +from waflib import TaskGen + def build(bld): if bld.env.STATIC: obj = bld(features = 'cxx cxxstlib') @@ -13,23 +15,37 @@ def build(bld): argb_frame.cc asset.cc certificates.cc - crypt_chain.cc + colour_matrix.cc cpl.cc dcp.cc dcp_time.cc gamma_lut.cc + image.cc kdm.cc + key.cc metadata.cc + mono_picture_asset.cc + mono_picture_asset_writer.cc + mono_picture_frame.cc mxf_asset.cc picture_asset.cc - picture_frame.cc + picture_asset_writer.cc + rec709_linearised_gamma_lut.cc reel.cc + rgb_xyz.cc + signer.cc + signer_chain.cc sound_asset.cc sound_frame.cc + srgb_linearised_gamma_lut.cc + stereo_picture_asset.cc + stereo_picture_asset_writer.cc + stereo_picture_frame.cc subtitle_asset.cc types.cc util.cc version.cc + xyz_frame.cc parse/asset_map.cc parse/cpl.cc parse/pkl.cc @@ -39,26 +55,41 @@ def build(bld): headers = """ asset.h certificates.h + colour_matrix.h cpl.h - crypt_chain.h dcp.h dcp_time.h exceptions.h + gamma_lut.h + image.h + kdm.h + key.h + lut.h + lut_cache.h metadata.h + mono_picture_asset.h + mono_picture_frame.h mxf_asset.h picture_asset.h - picture_frame.h + picture_asset_writer.h + rgb_xyz.h + rec709_linearised_gamma_lut.h reel.h argb_frame.h + signer.h + signer_chain.h sound_asset.h sound_frame.h + srgb_linearised_gamma_lut.h + stereo_picture_asset.h + stereo_picture_frame.h subtitle_asset.h types.h util.h version.h + xyz_frame.h """ bld.install_files('${PREFIX}/include/libdcp', headers) if bld.env.STATIC: bld.install_files('${PREFIX}/lib', 'libdcp.a') -