bb7e4f220b
Add support for new graphics redirection protocol (aka VAIL) used by WSLg. This protocol is currently being documented and the official documentation will be posted in the near future.
13 lines
360 B
CMake
13 lines
360 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()
|