Skip to content

Commit 0dd1898

Browse files
committed
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.
1 parent 7f401dc commit 0dd1898

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,15 @@ if(UNIX OR CYGWIN)
200200
set(PATH_SEP "/")
201201
set(FILE_SEP ":")
202202
set( MISC_PREFIX "share/libcombine/" )
203-
set(COMBINE_LIBRARY Combine)
203+
set(COMBINE_LIBRARY combine)
204204
else()
205205
set( MISC_PREFIX "" )
206206
set(PATH_SEP "\\")
207207
set(FILE_SEP ";")
208208
if(MINGW)
209-
set(COMBINE_LIBRARY Combine)
209+
set(COMBINE_LIBRARY combine)
210210
else()
211-
set(COMBINE_LIBRARY libCombine)
211+
set(COMBINE_LIBRARY libcombine)
212212
endif()
213213
endif()
214214

0 commit comments

Comments
 (0)