Default to static linking on both MSVC and MINGW

This commit is contained in:
Zachary Michaels 2014-08-06 12:27:16 -04:00 committed by Riccardo Spagni
parent f3271e8f12
commit 8d6a04a9f0
1 changed files with 6 additions and 1 deletions

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