summaryrefslogtreecommitdiff
path: root/test/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-28 13:15:37 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-28 13:15:37 +0000
commit8ccf9e982971a8eca1027ad5c04d837b6ad068dc (patch)
treef1f4785df95a266a7d1a511729e379913096f57a /test/wscript
parent257b936e9ed24043cfc1ed6e7e762858250bc388 (diff)
Add compress_j2k method and simple benchmark.
Diffstat (limited to 'test/wscript')
-rw-r--r--test/wscript8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/wscript b/test/wscript
index 707b776f..84c21a93 100644
--- a/test/wscript
+++ b/test/wscript
@@ -90,3 +90,11 @@ def build(bld):
obj.source = 'rewrite_subs.cc'
obj.target = 'rewrite_subs'
obj.install_path = ''
+
+ obj = bld(features='cxx cxxprogram')
+ obj.name = 'bench'
+ obj.uselib = 'BOOST_FILESYSTEM OPENJPEG CXML'
+ obj.use = 'libdcp%s' % bld.env.API_VERSION
+ obj.source = 'bench.cc'
+ obj.target = 'bench'
+ obj.install_path = ''