mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
16 lines
248 B
CMake
16 lines
248 B
CMake
|
|
set(MODULE_NAME pf_channels)
|
|
set(SOURCES
|
|
pf_channel_rdpdr.c
|
|
pf_channel_rdpdr.h
|
|
)
|
|
|
|
if (WITH_PROXY_EMULATE_SMARTCARD)
|
|
list(APPEND SOURCES
|
|
pf_channel_smartcard.c
|
|
pf_channel_smartcard.h
|
|
)
|
|
endif()
|
|
|
|
add_library(${MODULE_NAME} OBJECT ${SOURCES})
|