CMake: Fix missing space in linker flags

Fixes #4518, a regression from a7b0c99242
This commit is contained in:
Lukas W
2018-08-02 21:20:25 +02:00
parent b67cfffe5f
commit c44bc4eb7f

View File

@@ -196,7 +196,7 @@ IF(NOT MSVC)
# ENABLE_EXPORTS property has no effect in some MSYS2 configurations.
# Add the linker flag manually to create liblmms.dll.a import library
SET_PROPERTY(TARGET lmms
APPEND_STRING PROPERTY LINK_FLAGS -Wl,--out-implib,liblmms.dll.a
APPEND_STRING PROPERTY LINK_FLAGS " -Wl,--out-implib,liblmms.dll.a"
)
ENDIF()