[rdtk] default to OFF in all builds

Since this is now optional (and was never really used for much) disable
it unless explicitly enabled.
This commit is contained in:
Armin Novak
2026-02-19 13:00:07 +01:00
parent f4c991f902
commit 69200a7217
3 changed files with 3 additions and 1 deletions

View File

@@ -517,7 +517,7 @@ if(FREERDP_UNIFIED_BUILD)
endif()
if(WITH_SERVER)
option(WITH_RDTK "build rdtk toolkit" ON)
option(WITH_RDTK "build rdtk toolkit" OFF)
if(WITH_RDTK)
add_subdirectory(rdtk)
endif()

View File

@@ -4,6 +4,7 @@ set(WITH_MANPAGES OFF CACHE BOOL "preload")
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "preload")
#set (UWAC_FORCE_STATIC_BUILD ON CACHE BOOL "preload")
#set (RDTK_FORCE_STATIC_BUILD ON CACHE BOOL "preload")
set(WITH_RDTK ON CACHE BOOL "preload")
set(WITH_WAYLAND OFF CACHE BOOL "preload")
set(WITH_SAMPLE OFF CACHE BOOL "preload")
set(WITH_SERVER_SHADOW_CLI OFF CACHE BOOL "preload")

View File

@@ -4,6 +4,7 @@ set(BUILD_TESTING_INTERNAL ON CACHE BOOL "preload")
set(WITH_MANPAGES ON CACHE BOOL "preload")
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "preload")
set(WITH_PULSE ON CACHE BOOL "preload")
set(WITH_RDTK ON CACHE BOOL "preload")
set(WITH_CHANNELS ON CACHE BOOL "preload")
set(WITH_CUPS ON CACHE BOOL "preload")
set(WITH_WAYLAND ON CACHE BOOL "preload")