cmake: add client/server channel options

This commit is contained in:
Marc-André Moreau
2012-10-19 16:47:48 -04:00
parent 8e65b6c00c
commit 5bebfc798d
16 changed files with 173 additions and 20 deletions

View File

@@ -1,8 +1,16 @@
set(OPTION_DEFAULT ON)
set(OPTION_DEFAULT OFF)
set(OPTION_CLIENT_DEFAULT ON)
set(OPTION_SERVER_DEFAULT ON)
if(${OPTION_CLIENT_DEFAULT} OR ${OPTION_SERVER_DEFAULT})
set(OPTION_DEFAULT ON)
endif()
define_channel_options(NAME "audin" TYPE "dynamic"
DESCRIPTION "Audio Input Redirection Virtual Channel Extension"
SPECIFICATIONS "[MS-RDPEAI]"
DEFAULT ${OPTION_DEFAULT})
define_channel_client_options(${OPTION_CLIENT_DEFAULT})
define_channel_server_options(${OPTION_SERVER_DEFAULT})