Files
FreeRDP/channels/tsmf/ChannelOptions.cmake
akallabeth ac9cf26bce [cmake] fix define_channel_options
* fix usage of default value
* fix defaults of channels
* unify to single CMake function define_channel_options
2024-12-17 16:29:32 +01:00

21 lines
373 B
CMake

set(OPTION_DEFAULT OFF)
set(OPTION_CLIENT_DEFAULT OFF)
set(OPTION_SERVER_DEFAULT OFF)
define_channel_options(
NAME
"tsmf"
TYPE
"dynamic"
DESCRIPTION
"[DEPRECATED] Video Redirection Virtual Channel Extension"
SPECIFICATIONS
"[MS-RDPEV]"
DEFAULT
${OPTION_DEFAULT}
CLIENT_DEFAULT
${OPTION_CLIENT_DEFAULT}
SERVER_DEFAULT
${OPTION_SERVER_DEFAULT}
)