summaryrefslogtreecommitdiff
path: root/test/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-05-18 23:46:27 +0200
committerCarl Hetherington <cth@carlh.net>2025-05-29 21:13:19 +0200
commit6ebae0908fd6a0865962856342c744435696372d (patch)
tree670204d25026405d79f047d0dc55c27dde2ab5c4 /test/wscript
parent1e5e9a7398bd73cb5d0df6899af0dc919f8fb2db (diff)
Add a mock grk_compress.
Diffstat (limited to 'test/wscript')
-rw-r--r--test/wscript6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/wscript b/test/wscript
index d9529d0b8..7c7568cdb 100644
--- a/test/wscript
+++ b/test/wscript
@@ -206,3 +206,9 @@ def build(bld):
obj.target = 'unit-tests'
obj.install_path = ''
+
+ obj = bld(features='cxx cxxprogram')
+ obj.name = 'mockgrok'
+ obj.source = 'mock_grok.cc'
+ obj.target = 'grk_compress'
+ obj.uselib = 'DCP'