Dear Maintainer,
After install libturbojpeg0-dev package I wanna use CMake to find
library and header files. There is is simple cmake scenario for that:
apt-get install libturbojpeg0-dev cmake g++
# CMakeLists.txt
cmake_minimum_required(VERSION 3.15)
project(test)
find_package(libjpeg-turbo REQUIRED)
Instead of success configuration I receive a error, CMake module
cannot find '/usr/lib/x86_64-linux-gnu/libjpeg.a', which not exists.
Missed library provided by 'libjpeg62-turbo-dev', which will be pulled by
install 'libjpeg-dev'. These packages are not install with 'libturbojpeg0-dev'
I think there is missed dependency 'libjpeg-dev' for this package.