mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
* Increase required CMake version to 3.15 (windows only) * Use https://cmake.org/cmake/help/latest/prop_tgt/MSVC_RUNTIME_LIBRARY.html#prop_tgt:MSVC_RUNTIME_LIBRARY to select windows runtime
19 lines
1.1 KiB
CMake
19 lines
1.1 KiB
CMake
message("PRELOADING windows cache")
|
|
set (CMAKE_WINDOWS_VERSION "WIN7" CACHE STRING "windows build version")
|
|
set (BUILD_SHARED_LIBS OFF CACHE BOOL "build static linked executable")
|
|
set (CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded" CACHE STRING "MSVC runtime to use")
|
|
set (OPENSSL_USE_STATIC_LIBS ON CACHE BOOL "link OpenSSL static")
|
|
set (CHANNEL_URBDRC OFF CACHE BOOL "we do not build libusb support")
|
|
set (WITH_CLIENT_SDL ON CACHE BOOL "build with SDL client")
|
|
set (WITH_SERVER ON CACHE BOOL "Build with server support")
|
|
set (WITH_SHADOW OFF CACHE BOOL "Do not build shadow server")
|
|
set (WITH_PROXY ON CACHE BOOL "Build proxy server")
|
|
set (WITH_PLATFORM_SERVER OFF CACHE BOOL "Do not build platform server")
|
|
set (WITH_INTERNAL_MD4 ON CACHE BOOL "nightly default")
|
|
set (WITH_INTERNAL_MD5 ON CACHE BOOL "nightly default")
|
|
set (WITH_INTERNAL_RC4 ON CACHE BOOL "nightly default")
|
|
set (WITH_FFMPEG OFF CACHE BOOL "nightly default")
|
|
set (WITH_SWSCALE OFF CACHE BOOL "nightly default")
|
|
set (WITH_WEBVIEW OFF CACHE BOOL "nightly default")
|
|
set (ZLIB_USE_STATIC_LIBS ON CACHE BOOL "ci default")
|