mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.2 KiB
28 lines
1.2 KiB
--- CMakeLists.txt.orig 2013-04-28 17:57:10.000000000 -0500 |
|
+++ CMakeLists.txt 2015-12-03 12:53:52.371087900 -0600 |
|
@@ -7,6 +7,7 @@ |
|
|
|
option(ASM686 "Enable building i686 assembly implementation") |
|
option(AMD64 "Enable building amd64 assembly implementation") |
|
+option(WITH_STATIC "Static runtime on Windows" OFF) |
|
|
|
set(INSTALL_BIN_DIR "${CMAKE_INSTALL_PREFIX}/bin" CACHE PATH "Installation directory for executables") |
|
set(INSTALL_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib" CACHE PATH "Installation directory for libraries") |
|
@@ -66,6 +67,17 @@ |
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}) |
|
endif() |
|
|
|
+if(WITH_STATIC AND (MSVC OR MSYS)) |
|
+ # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace |
|
+ foreach(flag_var |
|
+ CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE |
|
+ CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO) |
|
+ if(${flag_var} MATCHES "/MD") |
|
+ string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") |
|
+ endif(${flag_var} MATCHES "/MD") |
|
+ endforeach(flag_var) |
|
+endif() |
|
+ |
|
if(NOT CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_CURRENT_BINARY_DIR) |
|
# If we're doing an out of source build and the user has a zconf.h |
|
# in their source tree...
|
|
|