mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-03 17:42:21 +00:00
Set output name correctly for OS/2
OS/2 has a DLL name length limit up to 8 characters.
This commit is contained in:
parent
c6b81a4041
commit
f10478b30b
1 changed files with 8 additions and 0 deletions
|
@ -264,6 +264,14 @@ if ( MACOSX_FRAMEWORK )
|
|||
VERSION ${LIB_VERSION_INFO}
|
||||
SOVERSION ${LIB_VERSION_CURRENT}
|
||||
)
|
||||
elseif ( OS2 )
|
||||
set_target_properties ( libfluidsynth
|
||||
PROPERTIES
|
||||
OUTPUT_NAME "fluidsyn"
|
||||
ARCHIVE_OUTPUT_NAME "fluidsynth"
|
||||
VERSION ${LIB_VERSION_INFO}
|
||||
SOVERSION ${LIB_VERSION_CURRENT}
|
||||
)
|
||||
else ( MACOSX_FRAMEWORK )
|
||||
set_target_properties ( libfluidsynth
|
||||
PROPERTIES
|
||||
|
|
Loading…
Reference in a new issue