Skip to content

Commit

Permalink
CMake: Fix missing space in linker flags
Browse files Browse the repository at this point in the history
Fixes #4518, a regression from a7b0c99
  • Loading branch information
lukas-w committed Aug 2, 2018
1 parent b67cfff commit c44bc4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit c44bc4e

Please sign in to comment.