Skip to content

Commit

Permalink
ENH:Cygwin: Set plugin prefix and suffix in CMake.
Browse files Browse the repository at this point in the history
  • Loading branch information
DWesl committed May 13, 2024
1 parent 6a1716d commit 986b95c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ set(CMAKE_BUILD_TYPE "")

if(WIN32)
set(PLUGINEXT "dll")
set(PLUGINPRE "__nc")
set(PLUGINPRE "__nc")
elif(CYGWIN)
set(PLUGINEXT "dll")
set(PLUGINPRE "lib__nc")
else()
set(PLUGINPRE "lib__nc")
if(APPLE)
Expand Down

0 comments on commit 986b95c

Please sign in to comment.