mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
20 lines
383 B
CMake
20 lines
383 B
CMake
set(OPTION_DEFAULT OFF)
|
|
set(OPTION_CLIENT_DEFAULT ON)
|
|
set(OPTION_SERVER_DEFAULT ON)
|
|
|
|
define_channel_options(
|
|
NAME
|
|
"disp"
|
|
TYPE
|
|
"dynamic"
|
|
DESCRIPTION
|
|
"Display Update Virtual Channel Extension"
|
|
SPECIFICATIONS
|
|
"[MS-RDPEDISP]"
|
|
DEFAULT
|
|
${OPTION_DEFAULT}
|
|
)
|
|
|
|
define_channel_client_options(${OPTION_CLIENT_DEFAULT})
|
|
define_channel_server_options(${OPTION_SERVER_DEFAULT})
|