mirror of https://github.com/FreeRDP/FreeRDP
32 lines
781 B
CMake
32 lines
781 B
CMake
|
|
set(OPTION_DEFAULT OFF)
|
|
set(OPTION_CLIENT_DEFAULT ON)
|
|
set(OPTION_SERVER_DEFAULT OFF)
|
|
|
|
if(WIN32)
|
|
set(OPTION_CLIENT_DEFAULT OFF)
|
|
set(OPTION_SERVER_DEFAULT OFF)
|
|
message("Serial redirection not supported on windows")
|
|
endif()
|
|
|
|
if(ANDROID)
|
|
set(OPTION_CLIENT_DEFAULT OFF)
|
|
set(OPTION_SERVER_DEFAULT OFF)
|
|
message("Serial redirection not supported on android")
|
|
endif()
|
|
|
|
if (APPLE)
|
|
set(OPTION_CLIENT_DEFAULT OFF)
|
|
set(OPTION_SERVER_DEFAULT OFF)
|
|
message("Serial redirection not supported on apple")
|
|
endif()
|
|
|
|
define_channel_options(NAME "serial" TYPE "device"
|
|
DESCRIPTION "Serial Port Virtual Channel Extension"
|
|
SPECIFICATIONS "[MS-RDPESP]"
|
|
DEFAULT ${OPTION_DEFAULT})
|
|
|
|
define_channel_client_options(${OPTION_CLIENT_DEFAULT})
|
|
define_channel_server_options(${OPTION_SERVER_DEFAULT})
|
|
|