webmproject / sjpeg

SimpleJPEG: simple jpeg encoder
Apache License 2.0
72 stars 13 forks source link

CMakeLists: fix sjpeg-utils dependency #121

Closed jzern closed 1 year ago

jzern commented 1 year ago

This library relies on sjpeg::EncoderParam::ResetMetadata() when SJPEG_HAVE_JPEG or SJPEG_HAVE_PNG are set. The header is included unconditionally, so the dependency is treated the same.

Fixes undefined reference link errors to the function.

Thanks to @leleliu008 for the report and proposed fix.

Fixes #120.