mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
9 lines
279 B
CMake
9 lines
279 B
CMake
find_library(PCSC_WINPR_LIBRARY NAMES libpcsc-winpr.a PATHS /opt/lib /usr/lib /usr/local/lib)
|
|
|
|
if(NOT ${PCSC_WINPR_LIBRARY} MATCHES ".*-NOTFOUND")
|
|
set(PCSC_WINPR_FOUND 1)
|
|
message(STATUS "Found PCSC-WinPR: ${PCSC_WINPR_LIBRARY}")
|
|
endif()
|
|
|
|
mark_as_advanced(PCSC_WINPR_LIBRARY)
|