mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
16 lines
378 B
CMake
16 lines
378 B
CMake
|
|
set(CHANNEL_TYPE "dynamic")
|
|
set(CHANNEL_SHORT_NAME "urbdrc")
|
|
set(CHANNEL_LONG_NAME "USB Devices Virtual Channel Extension")
|
|
set(CHANNEL_SPECIFICATIONS "[MS-RDPEUSB]")
|
|
|
|
string(TOUPPER "WITH_${CHANNEL_SHORT_NAME}" CHANNEL_OPTION)
|
|
|
|
if(WIN32)
|
|
option(${CHANNEL_OPTION} "Build ${CHANNEL_SHORT_NAME}" OFF)
|
|
else()
|
|
option(${CHANNEL_OPTION} "Build ${CHANNEL_SHORT_NAME}" ON)
|
|
endif()
|
|
|
|
|