FreeRDP/server/proxy/channels/CMakeLists.txt
David Fort 63d0d3e4cf proxy: rework proxy channel treatments for statefull drdynvc
The rework introduce a stateful dynamic channel treatment, so that we can take early decisions
for data packet (dropping all the current packet or pass it), but also reassemble important
packets like channel creation.
2022-04-15 09:06:09 +02:00

18 lines
292 B
CMake

set(MODULE_NAME pf_channels)
set(SOURCES
pf_channel_rdpdr.c
pf_channel_rdpdr.h
pf_channel_drdynvc.c
pf_channel_drdynvc.h
)
if (WITH_PROXY_EMULATE_SMARTCARD)
list(APPEND SOURCES
pf_channel_smartcard.c
pf_channel_smartcard.h
)
endif()
add_library(${MODULE_NAME} OBJECT ${SOURCES})