Skip to content

Commit c7853ce

Browse files
FtZPetruskarillian
authored andcommitted
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 <[email protected]>
1 parent 3ecc22a commit c7853ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/OpusFileConfig.cmake.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ if (NOT @OP_DISABLE_HTTP@)
4747
endif()
4848

4949
# Including targets of opusfile
50-
include("${CMAKE_CURRENT_LIST_DIR}/opusfileTargets.cmake")
50+
include("${CMAKE_CURRENT_LIST_DIR}/OpusFileTargets.cmake")
5151

52-
check_required_components(opusfile)
52+
check_required_components(OpusFile)

0 commit comments

Comments
 (0)