mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
21 lines
403 B
CMake
21 lines
403 B
CMake
if(WITH_CHANNEL_GFXREDIR)
|
|
set(OPTION_DEFAULT OFF)
|
|
set(OPTION_CLIENT_DEFAULT OFF)
|
|
set(OPTION_SERVER_DEFAULT ON)
|
|
|
|
define_channel_options(
|
|
NAME
|
|
"gfxredir"
|
|
TYPE
|
|
"dynamic"
|
|
DESCRIPTION
|
|
"Graphics Redirection Virtual Channel Extension"
|
|
SPECIFICATIONS
|
|
"[MS-RDPXXXX]"
|
|
DEFAULT
|
|
${OPTION_DEFAULT}
|
|
)
|
|
|
|
define_channel_server_options(${OPTION_SERVER_DEFAULT})
|
|
endif()
|