From 0dd18989e1305360c811a27a4e1126750f8651dc Mon Sep 17 00:00:00 2001 From: Alan Garny Date: Fri, 7 Jan 2022 09:41:36 +1300 Subject: [PATCH] Renamed the library to [lib]combine. With `[lib]Combine`, a CMake file called `[lib]Combine-static-config.cmake` gets generated. Such a CMake file cannot be found on a case-sensitive system (since that kind of filename should be all lower case). Instead, a CMake file called `[lib]combine-static-config.cmake` should be generated. --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0bf2f2c..4d623d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -200,15 +200,15 @@ if(UNIX OR CYGWIN) set(PATH_SEP "/") set(FILE_SEP ":") set( MISC_PREFIX "share/libcombine/" ) - set(COMBINE_LIBRARY Combine) + set(COMBINE_LIBRARY combine) else() set( MISC_PREFIX "" ) set(PATH_SEP "\\") set(FILE_SEP ";") if(MINGW) - set(COMBINE_LIBRARY Combine) + set(COMBINE_LIBRARY combine) else() - set(COMBINE_LIBRARY libCombine) + set(COMBINE_LIBRARY libcombine) endif() endif()