58cd56c488
sample channel is static and not dynamic therefore dynamic should be set to FALSE in add_channel_client_library
17 lines
410 B
CMake
17 lines
410 B
CMake
set(OPTION_DEFAULT OFF)
|
|
|
|
if(WITH_SAMPLE)
|
|
set(OPTION_CLIENT_DEFAULT ON)
|
|
else()
|
|
set(OPTION_CLIENT_DEFAULT OFF)
|
|
endif()
|
|
set(OPTION_SERVER_DEFAULT OFF)
|
|
|
|
define_channel_options(NAME "sample" TYPE "static"
|
|
DESCRIPTION "Sample Virtual Channel Extension"
|
|
SPECIFICATIONS ""
|
|
DEFAULT ${OPTION_DEFAULT})
|
|
|
|
define_channel_client_options(${OPTION_CLIENT_DEFAULT})
|
|
define_channel_server_options(${OPTION_SERVER_DEFAULT})
|