apps: Move libtiff dependency to src/apps/meson.build

libtiff is a shared dependency between cam and qcam, move it to
src/apps/. The shared dependency will be used to condition compilation
of source files in an upcoming application static library.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2022-10-20 01:11:57 +03:00
parent cd5439fb97
commit 24f8ef763a
3 changed files with 4 additions and 4 deletions

View file

@ -38,8 +38,7 @@ qcam_resources = files([
qt5_cpp_args = ['-DQT_NO_KEYWORDS']
tiff_dep = dependency('libtiff-4', required : false)
if tiff_dep.found()
if libtiff.found()
qt5_cpp_args += ['-DHAVE_TIFF']
qcam_sources += files([
'../cam/dng_writer.cpp',
@ -77,7 +76,7 @@ qcam = executable('qcam', qcam_sources, resources,
dependencies : [
libatomic,
libcamera_public,
libtiff,
qt5_dep,
tiff_dep,
],
cpp_args : qt5_cpp_args)