Default to static linking on both MSVC and MINGW

This commit is contained in:
Zachary Michaels
2014-09-15 22:22:31 +02:00
committed by Riccardo Spagni
parent f3271e8f12
commit 8d6a04a9f0
+6 -1
View File
@@ -63,7 +63,12 @@ if(APPLE)
include_directories(SYSTEM /usr/include/malloc)
endif()
set(STATIC ${MSVC} CACHE BOOL "Link libraries statically")
if(MSVC OR MINGW)
set(DEFAULT_STATIC true)
else()
set(DEFAULT_STATIC false)
endif()
set(STATIC ${DEFAULT_STATIC} CACHE BOOL "Link libraries statically")
if (UNIX AND NOT APPLE)
# Note that at the time of this writing the -Wstrict-prototypes flag added below will make this fail