2973ff7004
Since the channel was introduced late in the 3.x series require users to explicitly enable it to not break existing build setups.
14 lines
380 B
CMake
14 lines
380 B
CMake
|
|
set(OPTION_DEFAULT OFF)
|
|
set(OPTION_CLIENT_DEFAULT OFF)
|
|
set(OPTION_SERVER_DEFAULT OFF)
|
|
|
|
define_channel_options(NAME "rdpear" TYPE "dynamic"
|
|
DESCRIPTION "Authentication redirection Virtual Channel Extension"
|
|
SPECIFICATIONS "[MS-RDPEAR]"
|
|
DEFAULT ${OPTION_DEFAULT})
|
|
|
|
define_channel_client_options(${OPTION_CLIENT_DEFAULT})
|
|
define_channel_server_options(${OPTION_SERVER_DEFAULT})
|
|
|