BUG: Fix CMake syntax for Cygwin plugin prefix/suffix

This commit is contained in:
DWesl 2024-05-24 17:20:52 -04:00 committed by GitHub
parent ff5a18d822
commit 1770b753a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,7 @@ set(CMAKE_BUILD_TYPE "")
if(WIN32)
set(PLUGINEXT "dll")
set(PLUGINPRE "__nc")
elif(CYGWIN)
elseif(CYGWIN)
set(PLUGINEXT "dll")
set(PLUGINPRE "lib__nc")
else()