diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-06-05 17:52:58 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-06-05 18:11:37 +0200 |
commit | a9b34ca3f27ed0b3c10effd3fb884936d9b02485 (patch) | |
tree | 43d0eb0996573481cd88558b9d4e20008aa0413f /meson.build | |
parent | bd92ad73ec995da9e2b2ca57faf011290f329d53 (diff) | |
download | fiv-a9b34ca3f27ed0b3c10effd3fb884936d9b02485.tar.gz fiv-a9b34ca3f27ed0b3c10effd3fb884936d9b02485.tar.xz fiv-a9b34ca3f27ed0b3c10effd3fb884936d9b02485.zip |
Unite most info tools into just one binary
Turn this into more of an fq alternative, when used with jq.
Also don't say that TIFF files are Exif.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 86d4f41..32ee8e6 100644 --- a/meson.build +++ b/meson.build @@ -189,8 +189,7 @@ if get_option('tools').enabled() cc.find_library('jq'), dependency('libpng'), dependency('libraw')] tools_c_args = cc.get_supported_arguments( '-Wno-unused-function', '-Wno-unused-parameter') - foreach tool : [ - 'pnginfo', 'rawinfo', 'jpeginfo', 'tiffinfo', 'webpinfo', 'bmffinfo'] + foreach tool : ['info', 'pnginfo', 'rawinfo'] executable(tool, 'tools/' + tool + '.c', tiff_tables, dependencies : tools_dependencies, c_args: tools_c_args) |