mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Default to static linking on both MSVC and MINGW
This commit is contained in:
parent
f3271e8f12
commit
8d6a04a9f0
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue