15 lines
417 B
CMake
15 lines
417 B
CMake
|
|
set(CHANNEL_TYPE "static")
|
|
set(CHANNEL_SHORT_NAME "rdpdr")
|
|
set(CHANNEL_LONG_NAME "Device Redirection Virtual Channel Extension")
|
|
set(CHANNEL_SPECIFICATIONS "[MS-RDPEFS] [MS-RDPEPC] [MS-RDPESC] [MS-RDPESP]")
|
|
|
|
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()
|
|
|