shithub: opusfile

Download patch

ref: c7853ce10dd53eb26b32bfc001159c3f718faf2f
parent: 3ecc22aa0a4430f61c2403d57370a089536d197a
author: Pierre Wendling <pierre.wendling.4@gmail.com>
date: Mon Feb 13 16:39:51 EST 2023

CMake: Fix target import on case-sensitive FS.

On case-sensitive filesystems, `OpusFileConfig.cmake` fails to include
the exported targets due to mismatch capitalisation.

Signed-off-by: Ralph Giles <giles@thaumas.net>

--- a/cmake/OpusFileConfig.cmake.in
+++ b/cmake/OpusFileConfig.cmake.in
@@ -47,6 +47,6 @@
 endif()
 
 # Including targets of opusfile
-include("${CMAKE_CURRENT_LIST_DIR}/opusfileTargets.cmake")
+include("${CMAKE_CURRENT_LIST_DIR}/OpusFileTargets.cmake")
 
-check_required_components(opusfile)
+check_required_components(OpusFile)
--