summaryrefslogtreecommitdiff
path: root/tests/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'tests/meson.build')
-rw-r--r--tests/meson.build23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 86eee1d..dbe21f2 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -67,6 +67,18 @@ test_loader_pixbuf = executable(
)
test('loader_pixbuf', test_loader_pixbuf, suite : 'unit', env : fixtures_env)
+if libjpeg_dep.found()
+ test_loader_jpeg = executable(
+ 'test_loader_jpeg',
+ ['test_loader_jpeg.c', ggaze_conf_h],
+ include_directories : [inc, src_inc],
+ dependencies : [gdkpixbuf_dep, gtk4_dep, glib_dep, gio_dep],
+ link_with : ggaze_lib,
+ install : false,
+ )
+ test('loader_jpeg', test_loader_jpeg, suite : 'unit', env : fixtures_env)
+endif
+
test_navigator = executable(
'test_navigator',
['test_navigator.c', ggaze_conf_h],
@@ -172,4 +184,15 @@ test_grid_cull = executable(
)
test('grid_cull', test_grid_cull, suite : 'integration', env : fixtures_env)
+test_progressive_jpeg = executable(
+ 'test_progressive_jpeg',
+ ['test_progressive_jpeg.c', ggaze_conf_h],
+ include_directories : [inc, src_inc],
+ dependencies : ggaze_deps,
+ link_with : ggaze_lib,
+ install : false,
+)
+test('progressive_jpeg', test_progressive_jpeg,
+ suite : 'integration', env : fixtures_env)
+
subdir('integration') \ No newline at end of file