summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2021-01-05 14:20:54 +0100
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2021-01-05 14:20:54 +0100
commitd809ca6665f142a49325e7c13379cde583ccf0a3 (patch)
tree8f42613ac1682b95ea53d79bf84a5cd673caffad
parent086e48a62163e5e69d052855647adc1504d56b0a (diff)
CMake: Adjust libkeyfinder capitals
-rw-r--r--CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f456128b98..a7318c77b6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1695,10 +1695,10 @@ if(KEYFINDER)
set(KeyFinder_INSTALL_DIR "${CMAKE_CURRENT_BINARY_DIR}/lib/keyfinder-install")
set(KeyFinder_LIBRARY "lib/${CMAKE_STATIC_LIBRARY_PREFIX}keyfinder${CMAKE_STATIC_LIBRARY_SUFFIX}")
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/download")
- ExternalProject_Add(libKeyFinder
- URL "https://github.com/mixxxdj/libKeyFinder/archive/v2.2.3.zip"
+ ExternalProject_Add(libkeyfinder
+ URL "https://github.com/mixxxdj/libkeyfinder/archive/v2.2.3.zip"
URL_HASH SHA256=ad43ca006e3bbed0810ff62e170d04522a64f8606c2166bfa5a9b9158b7ebc11
- DOWNLOAD_DIR "${CMAKE_CURRENT_BINARY_DIR}/download/libKeyFinder"
+ DOWNLOAD_DIR "${CMAKE_CURRENT_BINARY_DIR}/download/libkeyfinder"
INSTALL_DIR "${KeyFinder_INSTALL_DIR}"
CMAKE_ARGS
-DBUILD_STATIC_LIBS=ON
@@ -1722,7 +1722,7 @@ if(KEYFINDER)
file(MAKE_DIRECTORY "${KeyFinder_INSTALL_DIR}/include")
add_library(mixxx-keyfinder STATIC IMPORTED)
- add_dependencies(mixxx-keyfinder libKeyFinder)
+ add_dependencies(mixxx-keyfinder libkeyfinder)
set_target_properties(mixxx-keyfinder PROPERTIES IMPORTED_LOCATION "${KeyFinder_INSTALL_DIR}/${KeyFinder_LIBRARY}")
target_link_libraries(mixxx-keyfinder INTERFACE FFTW::FFTW)
target_include_directories(mixxx-keyfinder INTERFACE "${KeyFinder_INSTALL_DIR}/include")