mirror of
https://github.com/glfw/glfw.git
synced 2024-11-13 14:03:52 +00:00
Win32: Disable dynamic libgcc for MinGW DLL
(cherry picked from commit 3ec8f4a7f5
)
This commit is contained in:
parent
613b169899
commit
e30718e927
@ -125,6 +125,10 @@ target_compile_options(glfw PRIVATE
|
|||||||
if (BUILD_SHARED_LIBS)
|
if (BUILD_SHARED_LIBS)
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
if (MINGW)
|
if (MINGW)
|
||||||
|
# Remove the dependency on the shared version of libgcc
|
||||||
|
# NOTE: MinGW-w64 has the correct default but MinGW needs this
|
||||||
|
target_link_options(glfw PRIVATE "-static-libgcc")
|
||||||
|
|
||||||
# Remove the lib prefix on the DLL (but not the import library)
|
# Remove the lib prefix on the DLL (but not the import library)
|
||||||
set_target_properties(glfw PROPERTIES PREFIX "")
|
set_target_properties(glfw PROPERTIES PREFIX "")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user