Quite large reworking of signer/cert handling.
[libdcp.git] / src / wscript
index 0922cb56c7de682ddd37344631505fc87d55eef5..87059b36e4238af1c2ba8225e4425360929ce92d 100644 (file)
+from waflib import TaskGen
+
 def build(bld):
-    if bld.env.STATIC_LIBDCP:
+    if bld.env.STATIC:
         obj = bld(features = 'cxx cxxstlib')
     else:
         obj = bld(features = 'cxx cxxshlib')
 
-    obj.name = 'libdcp'
-    obj.target = 'dcp'
+    obj.name = 'libdcp%s' % bld.env.API_VERSION
+    obj.target = 'dcp%s' % bld.env.API_VERSION
     obj.export_includes = ['.']
-    obj.uselib = 'BOOST_FILESYSTEM BOOST_SIGNALS2 BOOST_DATETIME OPENSSL SIGC++ LIBXML++ OPENJPEG XMLSEC1'
-    obj.use = 'libkumu-libdcp libasdcp-libdcp'
+    obj.uselib = 'BOOST_FILESYSTEM BOOST_SIGNALS2 BOOST_DATETIME OPENSSL SIGC++ LIBXML++ OPENJPEG CXML XMLSEC1'
+    obj.use = 'libkumu-libdcp%s libasdcp-libdcp%s' % (bld.env.API_VERSION, bld.env.API_VERSION)
     obj.source = """
+                 argb_frame.cc
                  asset.cc
-                 asset_map.cc
+                 certificate_chain.cc
                  certificates.cc
-                 cpl_file.cc
-                 crypt_chain.cc
+                 colour_matrix.cc
+                 content.cc
+                 cpl.cc
                  dcp.cc        
                  dcp_time.cc
-                 lut.cc
+                 decrypted_kdm.cc
+                 decrypted_kdm_key.cc
+                 encrypted_kdm.cc
+                 exceptions.cc
+                 file.cc
+                 font.cc
+                 gamma_lut.cc
+                 image.cc
+                 key.cc
+                 load_font.cc
+                 local_time.cc
                  metadata.cc
-                 mxf_asset.cc
-                 picture_asset.cc
-                 picture_frame.cc
-                 pkl_file.cc
+                 mono_picture_mxf.cc
+                 mono_picture_mxf_writer.cc
+                 mono_picture_frame.cc
+                 mxf.cc
+                 mxf_writer.cc
+                 object.cc
+                 picture_mxf.cc
+                 picture_mxf_writer.cc
                  reel.cc
-                 argb_frame.cc
-                 sound_asset.cc
+                 reel_asset.cc
+                 reel_mono_picture_asset.cc
+                 reel_picture_asset.cc
+                 reel_sound_asset.cc
+                 reel_stereo_picture_asset.cc
+                 reel_subtitle_asset.cc
+                 rgb_xyz.cc
+                 signer.cc
+                 sound_mxf.cc
+                 sound_mxf_writer.cc
                  sound_frame.cc
-                 subtitle_asset.cc
-                 test_mode.cc
+                 stereo_picture_mxf.cc
+                 stereo_picture_mxf_writer.cc
+                 stereo_picture_frame.cc
+                 subtitle.cc
+                 subtitle_content.cc
+                 subtitle_string.cc
+                 text.cc
                  types.cc
                  util.cc
                  version.cc
-                 xml.cc
+                 xyz_frame.cc
                  """
 
     headers = """
               asset.h
+              certificate_chain.h
               certificates.h
-              crypt_chain.h
+              colour_matrix.h
+              cpl.h
+              content.h
               dcp.h
               dcp_time.h
+              decrypted_kdm.h
+              decrypted_kdm_key.h
+              encrypted_kdm.h
               exceptions.h
+              gamma_lut.h
+              image.h
+              key.h
+              local_time.h
+              lut_cache.h
               metadata.h
-              mxf_asset.h
-              picture_asset.h
-              picture_frame.h
+              mono_picture_mxf.h
+              mono_picture_frame.h
+              mxf.h
+              mxf_writer.h
+              object.h
+              picture_mxf.h
+              picture_mxf_writer.h
+              raw_convert.h
+              rgb_xyz.h
               reel.h
+              reel_asset.h
+              reel_mono_picture_asset.h
+              reel_picture_asset.h
+              reel_sound_asset.h
+              reel_stereo_picture_asset.h
+              reel_subtitle_asset.h
+              ref.h
               argb_frame.h
-              sound_asset.h
+              signer.h
               sound_frame.h
-              subtitle_asset.h
-              test_mode.h
+              sound_mxf.h
+              sound_mxf_writer.h
+              stereo_picture_mxf.h
+              stereo_picture_frame.h
+              subtitle.h
+              subtitle_content.h
+              subtitle_string.h
               types.h
               util.h
               version.h
-              xml.h
+              xyz_frame.h
               """
 
-    bld.install_files('${PREFIX}/include/libdcp', headers)
-    if bld.env.STATIC_LIBDCP:
-        bld.install_files('${PREFIX}/lib', 'libdcp.a')
+    bld.install_files('${PREFIX}/include/libdcp%s/dcp' % bld.env.API_VERSION, headers)
+    if bld.env.STATIC:
+        bld.install_files('${PREFIX}/lib', 'libdcp%s.a' % bld.env.API_VERSION)