Skip to content

Commit

Permalink
Revert 'remove dll name difference between MinGW and MSVC builds'
Browse files Browse the repository at this point in the history
This reverts commit 699220b until
appveyor's package generation is fixed.
  • Loading branch information
sezero committed Nov 25, 2020
1 parent c0e2d0a commit 58657a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ SET(LIBRARY_OUTPUT_PATH "${CMAKE_BINARY_DIR}")

# set our library names
IF (MSVC) # windows uses *.lib for both static and dynamic, workaround
SET(LIBRARY_DYN_NAME "libWildMidi")
SET(LIBRARY_STATIC_NAME "libWildMidi-static")
SET(LIBRARY_DYN_NAME "wildmidi_dynamic")
SET(LIBRARY_STATIC_NAME "wildmidi_static")
ELSE () # everyone else uses .a and .so
SET(LIBRARY_DYN_NAME "WildMidi")
SET(LIBRARY_STATIC_NAME "WildMidi")
Expand Down

0 comments on commit 58657a2

Please sign in to comment.