diff options
Diffstat (limited to 'test/wscript')
| -rw-r--r-- | test/wscript | 8 |
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 = '' |
