Skip to content

Commit

Permalink
[cmake] Change package config filename to lowercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carbon225 committed Feb 17, 2022
1 parent efce215 commit 8ceb659
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -280,23 +280,23 @@ include(CMakePackageConfigHelpers)

# Write cmake package version file
write_basic_package_version_file(
RtMidi-config-version.cmake
rtmidi-config-version.cmake
VERSION ${FULL_VER}
COMPATIBILITY SameMajorVersion
)

# Write cmake package config file
configure_package_config_file (
cmake/RtMidi-config.cmake.in
RtMidi-config.cmake
cmake/rtmidi-config.cmake.in
rtmidi-config.cmake
INSTALL_DESTINATION "${RTMIDI_CMAKE_DESTINATION}"
)

# Install package files
install (
FILES
"${CMAKE_CURRENT_BINARY_DIR}/RtMidi-config.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/RtMidi-config-version.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/rtmidi-config.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/rtmidi-config-version.cmake"
DESTINATION
"${RTMIDI_CMAKE_DESTINATION}"
)
File renamed without changes.

0 comments on commit 8ceb659

Please sign in to comment.