diff options
author | Paul Elder <paul.elder@ideasonboard.com> | 2022-10-13 19:47:22 +0900 |
---|---|---|
committer | Paul Elder <paul.elder@ideasonboard.com> | 2022-10-19 21:05:43 +0900 |
commit | bb394442abf0f1bcb70fa6a48e3949da79703a71 (patch) | |
tree | 09bbdca10a72028eacddd7d9415a9267855387b9 /src/qcam/meson.build | |
parent | ca247829c3feea28d65b181fd0a5f76ff7120a15 (diff) |
qcam, cam: Move DNGWriter from qcam to cam
To prepare for adding DNG support to cam, move DNGWriter from qcam to
cam so that we only have inclusions from qcam to cam and not the other
way around.
Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/qcam/meson.build')
-rw-r--r-- | src/qcam/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcam/meson.build b/src/qcam/meson.build index 61861ea6..9f5759ff 100644 --- a/src/qcam/meson.build +++ b/src/qcam/meson.build @@ -49,7 +49,7 @@ if tiff_dep.found() qt5_cpp_args += ['-DHAVE_TIFF'] qcam_deps += [tiff_dep] qcam_sources += files([ - 'dng_writer.cpp', + '../cam/dng_writer.cpp', ]) endif |