[channels,rdpecam] add client channel stub

This commit is contained in:
akallabeth 2024-03-15 08:28:41 +01:00 committed by akallabeth
parent 35430cf191
commit 8fb421dd3a
3 changed files with 5 additions and 0 deletions

View File

@ -20,3 +20,7 @@ define_channel("rdpecam")
if(WITH_SERVER_CHANNELS)
add_channel_server(${MODULE_PREFIX} ${CHANNEL_NAME})
endif()
if(WITH_CLIENT_CHANNELS)
add_channel_client(${MODULE_PREFIX} ${CHANNEL_NAME})
endif()

View File

@ -9,4 +9,5 @@ define_channel_options(NAME "rdpecam" TYPE "dynamic"
DEFAULT ${OPTION_DEFAULT})
define_channel_server_options(${OPTION_SERVER_DEFAULT})
define_channel_client_options(${OPTION_CLIENT_DEFAULT})

View File