From cea4951ac19c2fc80d334756930967b33bd795c0 Mon Sep 17 00:00:00 2001 From: Dominik Loidolt <dominik.loidolt@univie.ac.at> Date: Thu, 17 Mar 2022 17:49:43 +0100 Subject: [PATCH] refactor & test Rice and Golomb Encoder --- test/meson.build | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/test/meson.build b/test/meson.build index c3a6afb..b843e00 100644 --- a/test/meson.build +++ b/test/meson.build @@ -30,12 +30,14 @@ if cppcheck.found() ) endif +subdir('tools') + subdir('cmp_tool') cunit_dep = dependency('cunit', required : false) -if cunit_dep.found() - subdir('cmp_icu') -else - message('C Unit Testing Framework not found! Skipping unit tests.') -endif +unity_dep = dependency('unity', fallback : ['unity', 'unity_dep']) +# unity_proj = subproject('unity') +# unity_dep = unity_proj.get_variable('unity_dep') + +subdir('cmp_icu') -- GitLab