Rename CPL -> CPLFile
[libdcp.git] / wscript
diff --git a/wscript b/wscript
index c619dbb25a115610fab269b520b01f115c1e9a89..f283d8daa2892caa41416ffa84bdc7c857f29b10 100644 (file)
--- a/wscript
+++ b/wscript
@@ -1,8 +1,9 @@
 import subprocess
 import os
+import lut
 
 APPNAME = 'libdcp'
-VERSION = '0.08pre'
+VERSION = '0.20pre'
 
 def options(opt):
     opt.load('compiler_cxx')
@@ -14,6 +15,8 @@ def configure(conf):
     conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-Wno-unused-result', '-O2', '-D_FILE_OFFSET_BITS=64'])
     conf.env.append_value('CXXFLAGS', ['-DLIBDCP_VERSION="%s"' % VERSION])
 
+    conf.env.TARGET_WINDOWS = conf.options.target_windows
+
     if conf.options.target_windows:
         conf.env.append_value('CXXFLAGS', '-DLIBDCP_WINDOWS')
     else:
@@ -23,6 +26,15 @@ def configure(conf):
     conf.check_cfg(package = 'sigc++-2.0', args = '--cflags --libs', uselib_store = 'SIGC++', mandatory = True)
     conf.check_cfg(package = 'libxml++-2.6', args = '--cflags --libs', uselib_store = 'LIBXML++', mandatory = True)
 
+    conf.check_cc(fragment  = """
+                             #include <stdio.h>\n
+                             #include <openjpeg.h>\n
+                             int main () {\n
+                             void* p = (void *) opj_image_create;\n
+                             return 0;\n
+                             }
+                             """, msg = 'Checking for library openjpeg', lib = 'openjpeg', uselib_store = 'OPENJPEG')
+
     if conf.options.target_windows:
         boost_lib_suffix = '-mt'
     else:
@@ -42,22 +54,30 @@ def configure(conf):
                    lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
                    uselib_store = 'BOOST_FILESYSTEM')
 
+    lut.make_luts()
+
     conf.recurse('test')
     conf.recurse('asdcplib')
 
 def build(bld):
     create_version_cc(VERSION)
 
+    if bld.env.TARGET_WINDOWS:
+        boost_lib_suffix = '-mt'
+    else:
+        boost_lib_suffix = ''
+
     bld(source = 'libdcp.pc.in',
         version = VERSION,
         includedir = '%s/include' % bld.env.PREFIX,
-        libs = "-L${libdir} -ldcp -lkumu-libdcp -lasdcp-libdcp",
+        libs = "-L${libdir} -ldcp -lkumu-libdcp -lasdcp-libdcp -lboost_system%s" % boost_lib_suffix,
         install_path = '${LIBDIR}/pkgconfig')
 
     bld.recurse('src')
     bld.recurse('tools')
     bld.recurse('test')
     bld.recurse('asdcplib')
+    bld.recurse('examples')
 
 def dist(ctx):
     ctx.excl = 'TODO core *~ .git build .waf* .lock* doc/*~ src/*~ test/ref/*~'