Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CMake: flac-config.cmake is missing find_dependency(Threads) #820

Open
z-s-e opened this issue Mar 15, 2025 · 0 comments
Open

CMake: flac-config.cmake is missing find_dependency(Threads) #820

z-s-e opened this issue Mar 15, 2025 · 0 comments

Comments

@z-s-e
Copy link

z-s-e commented Mar 15, 2025

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 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):

if(@HAVE_PTHREAD@)
    set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
    set(THREADS_PREFER_PTHREAD_FLAG TRUE)
    find_dependency(Threads)
endif()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant