You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, doing find_package(FLAC REQUIRED) in a project fails, unless one uses the work-around of having find_package(Threads REQUIRED) beforehand, which is not so nice.
I believe all that needs to be done here is adding the following lines to flac-config.cmake.in after the include(CMakeFindDependencyMacro):
The cmake Package Configuration File should find all dependencies that the targets need, otherwise configuration fails.
Right now, doing
find_package(FLAC REQUIRED)
in a project fails, unless one uses the work-around of havingfind_package(Threads REQUIRED)
beforehand, which is not so nice.I believe all that needs to be done here is adding the following lines to flac-config.cmake.in after the
include(CMakeFindDependencyMacro)
:The text was updated successfully, but these errors were encountered: