diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2023-08-12 10:07:55 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2023-08-12 10:07:55 +0200 |
commit | 2333d2b06d52754a55a747fa438844286f98d53a (patch) | |
tree | e46351c8ec622c9d13232cf00c8a1048e55184af /test/meson.build | |
parent | 7f667adb7b8d3a803a6cd6120dcea4ba4ff89075 (diff) | |
parent | d0aaad443a88968dc61172c050084d3d9faa7602 (diff) |
Update upstream source from tag 'upstream/0.32.2'
Update to upstream version '0.32.2'
with Debian dir f0c4eb48b3e5ba2a80bbd45ac2effe5ecd515530
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build index de1f012..5319cfc 100644 --- a/test/meson.build +++ b/test/meson.build @@ -2,4 +2,24 @@ natural_collate_test = executable('natural-collate-test', ['NaturalCollate-Test.vala', 'NaturalCollate.vala'], dependencies : gio) +jfif_support_test = executable('jfif-support-test', + ['jfif/JfifSupport-Test.vala', + 'jfif/PhotoFileSniffer.vala', + 'jfif/PhotoFileAdapter.vala', + 'jfif/JfifSupport.vala', + 'jfif/GdkSupport.vala', + 'jfif/Dimensions.vala', + 'jfif/string.vala', + 'jfif/file.vala', + 'jfif/util_core-stub.vala', + 'jfif/ProgressMonitor-stub.vala', + 'jfif/PhotoMetadata-stub.vala', + 'jfif/PhotoFileFormat-jfifstub.vala', + 'jfif/util_image-stub.vala'], + dependencies : [gio, gee, gtk, gexiv2, math], + c_args : ['-DTEST_DATA_DIR="@0@"'.format(meson.current_source_dir())] + ) + + test('natural-collate', natural_collate_test) +test('jfif-support', jfif_support_test) |