mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
20 lines
380 B
CMake
20 lines
380 B
CMake
set(OPTION_DEFAULT OFF)
|
|
set(OPTION_CLIENT_DEFAULT ON)
|
|
set(OPTION_SERVER_DEFAULT ON)
|
|
|
|
define_channel_options(
|
|
NAME
|
|
"cliprdr"
|
|
TYPE
|
|
"static"
|
|
DESCRIPTION
|
|
"Clipboard Virtual Channel Extension"
|
|
SPECIFICATIONS
|
|
"[MS-RDPECLIP]"
|
|
DEFAULT
|
|
${OPTION_DEFAULT}
|
|
)
|
|
|
|
define_channel_client_options(${OPTION_CLIENT_DEFAULT})
|
|
define_channel_server_options(${OPTION_SERVER_DEFAULT})
|