Tweak path in the example.
[libdcp.git] / benchmark / wscript
index 3e748972aa5f0932b9dd95035ccbdbd8e9420920..7097a762dd171279cd3539c15fbc0df24c76b37e 100644 (file)
 #
 
 def build(bld):
-    for p in ['rgb_to_xyz']:
+    for p in ['rgb_to_xyz', 'j2k_transcode']:
         obj = bld(features='cxx cxxprogram')
         obj.name = p
-        obj.uselib = 'BOOST_FILESYSTEM'
+        obj.uselib = 'BOOST_FILESYSTEM ASDCPLIB_CTH CXML'
         obj.cppflags = ['-g', '-O2']
         obj.use = 'libdcp%s' % bld.env.API_VERSION
         obj.source = "%s.cc" % p