diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-11-08 17:25:38 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-11-08 17:25:57 +0100 |
commit | 155f57db20c67174fff077bb1013b1a3a802b958 (patch) | |
tree | a2a34dcbff1bb16af7d55a02fdd72652add8b849 | |
parent | 7d640651cb05ee6ecc18ced5669d42c6d709797b (diff) | |
download | fiv-155f57db20c67174fff077bb1013b1a3a802b958.tar.gz fiv-155f57db20c67174fff077bb1013b1a3a802b958.tar.xz fiv-155f57db20c67174fff077bb1013b1a3a802b958.zip |
meson.build: fix the io-benchmark target
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 12d79ee..4e1d299 100644 --- a/meson.build +++ b/meson.build @@ -28,7 +28,7 @@ executable('fastiv', 'fastiv.c', 'fastiv-view.c', 'fastiv-io.c', # TODO(p): See fastiv_io_open(), consider optionally integrating this. gdk_pixbuf = dependency('gdk-pixbuf-2.0', required : false) if gdk_pixbuf.found() - executable('io-benchmark', 'fastiv-io-benchmark.c', 'fastiv-io.c', + executable('io-benchmark', 'fastiv-io-benchmark.c', 'fastiv-io.c', 'xdg.c', build_by_default : false, dependencies : [dependencies, gdk_pixbuf]) endif |