From cf802790f46614b5826d05047d1c4dc6db8e695d Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 4 Jul 2023 10:48:03 +0200 Subject: [PATCH] [ci] enable building of server and samples --- ci/cmake-preloads/config-debian-squeeze.txt | 2 ++ ci/cmake-preloads/config-macosx.txt | 2 ++ ci/cmake-preloads/config-ubuntu-1204.txt | 2 ++ ci/cmake-preloads/config-windows.txt | 5 +++-- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ci/cmake-preloads/config-debian-squeeze.txt b/ci/cmake-preloads/config-debian-squeeze.txt index b676c98ae..1c064f901 100644 --- a/ci/cmake-preloads/config-debian-squeeze.txt +++ b/ci/cmake-preloads/config-debian-squeeze.txt @@ -2,6 +2,8 @@ message("PRELOADING cache") set (WITH_MANPAGES OFF CACHE BOOL "man pages") set (CMAKE_BUILD_TYPE "Debug" CACHE STRING "build type") set (WITH_CUPS OFF CACHE BOOL "CUPS printing") +set (WITH_SERVER ON CACHE BOOL "build with server") +set (WITH_SAMPLE ON CACHE BOOL "build with sample") set (WITH_KRB5 ON CACHE BOOL "Kerberos support") set (WITH_ALSA OFF CACHE BOOL "alsa audio") set (WITH_FFMPEG OFF CACHE BOOL "ffmepg support") diff --git a/ci/cmake-preloads/config-macosx.txt b/ci/cmake-preloads/config-macosx.txt index ff093c20e..54f371f5f 100644 --- a/ci/cmake-preloads/config-macosx.txt +++ b/ci/cmake-preloads/config-macosx.txt @@ -4,6 +4,8 @@ set (CMAKE_BUILD_TYPE "Debug" CACHE STRING "build type") set (WITH_CUPS ON CACHE BOOL "CUPS printing") set (CHANNEL_URBDRC OFF CACHE BOOL "USB redirection") set (WITH_X11 ON CACHE BOOL "Enable X11") +set (WITH_SERVER ON CACHE BOOL "build with server") +set (WITH_SAMPLE ON CACHE BOOL "build with sample") set (BUILD_TESTING ON CACHE BOOL "build testing") set (WITH_SANITIZE_ADDRESS ON CACHE BOOL "build with address sanitizer") set (WITH_FREERDP_DEPRECATED_COMMANDLINE ON CACHE BOOL "Enable deprecated command line options") diff --git a/ci/cmake-preloads/config-ubuntu-1204.txt b/ci/cmake-preloads/config-ubuntu-1204.txt index 61731b17d..642cc449a 100644 --- a/ci/cmake-preloads/config-ubuntu-1204.txt +++ b/ci/cmake-preloads/config-ubuntu-1204.txt @@ -8,5 +8,7 @@ set (WITH_FFMPEG OFF CACHE BOOL "ffmepg support") set (WITH_XV OFF CACHE BOOL "xvideo support") set (BUILD_TESTING ON CACHE BOOL "build testing") set (WITH_XSHM OFF CACHE BOOL "build with xshm support") +set (WITH_SERVER ON CACHE BOOL "build with server") +set (WITH_SAMPLE ON CACHE BOOL "build with sample") set (WITH_SANITIZE_ADDRESS ON) set (WITH_FREERDP_DEPRECATED_COMMANDLINE ON CACHE BOOL "Enable deprecated command line options") diff --git a/ci/cmake-preloads/config-windows.txt b/ci/cmake-preloads/config-windows.txt index e8b118597..b489555b0 100644 --- a/ci/cmake-preloads/config-windows.txt +++ b/ci/cmake-preloads/config-windows.txt @@ -1,7 +1,8 @@ message("PRELOADING windows cache") set (CMAKE_BUILD_TYPE "Debug" CACHE STRING "build type") -set (WITH_SERVER "ON" CACHE BOOL "Build server binaries") -set (WITH_PROXY_MODULES "OFF" CACHE BOOL "Do not build proxy modules") +set (WITH_SERVER ON CACHE BOOL "build with server") +set (WITH_SAMPLE ON CACHE BOOL "build with sample") +set (WITH_PROXY_MODULES "ON" CACHE BOOL "Do not build proxy modules") set (CHANNEL_URBDRC OFF CACHE BOOL "USB redirection") set (BUILD_TESTING ON CACHE BOOL "build testing") set (WITH_SANITIZE_ADDRESS ON)