We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
An installed VorbisConfig.cmake needs Ogg
VorbisConfig.cmake
vorbis/cmake/VorbisConfig.cmake.in
Lines 4 to 6 in 84c0236
This assumes ogg is installed with cmake and OggConfig.cmake/FindOgg.cmake is somehow available.
OggConfig.cmake
FindOgg.cmake
Vorbis itself ships a FindOgg.cmake module and thus does not require ogg to provide OggConfig.cmake.
So I propose to installFindOgg.cmake as well, and add it to CMAKE_MODULE_PATH inside VorbisConfig.cmake.
CMAKE_MODULE_PATH
I do something similar in SDL_mixer to find the various dependencies. (SDL_mixer only needs the dependencies when building a static library)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
An installed
VorbisConfig.cmake
needs Oggvorbis/cmake/VorbisConfig.cmake.in
Lines 4 to 6 in 84c0236
This assumes ogg is installed with cmake and
OggConfig.cmake
/FindOgg.cmake
is somehow available.Vorbis itself ships a
FindOgg.cmake
module and thus does not require ogg to provideOggConfig.cmake
.So I propose to install
FindOgg.cmake
as well, and add it toCMAKE_MODULE_PATH
insideVorbisConfig.cmake
.I do something similar in SDL_mixer to find the various dependencies.
(SDL_mixer only needs the dependencies when building a static library)
The text was updated successfully, but these errors were encountered: