mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Static linking only when PREFER_BUNDLED_LIBS (closes #1295)
This commit is contained in:
parent
0605a4f662
commit
c7941db9d4
|
@ -1499,7 +1499,7 @@ foreach(target ${TARGETS_LINK})
|
|||
target_link_libraries(${target} -stdlib=libc++)
|
||||
target_link_libraries(${target} -mmacosx-version-min=10.7)
|
||||
endif()
|
||||
if(MINGW OR TARGET_OS STREQUAL "linux")
|
||||
if((MINGW OR TARGET_OS STREQUAL "linux") AND PREFER_BUNDLED_LIBS)
|
||||
# Statically link the standard libraries with on MinGW/Linux so we don't
|
||||
# have to ship them as DLLs.
|
||||
target_link_libraries(${target} -static-libgcc)
|
||||
|
|
Loading…
Reference in a new issue