diff options
author | cslashm <cslashm@gmail.com> | 2018-05-23 10:22:55 +0200 |
---|---|---|
committer | cslashm <cslashm@gmail.com> | 2018-05-23 10:22:55 +0200 |
commit | bdf5a3ad3fb9e626a0c1cc2264934f26d07d06fc (patch) | |
tree | 2b5825df6768c530b59dce4b4eda722fe6c106ec /CMakeLists.txt | |
parent | Merge pull request #3800 (diff) | |
download | monero-bdf5a3ad3fb9e626a0c1cc2264934f26d07d06fc.tar.xz |
Fix PCSC compilation under windows
PR3843 based on release-v0.12 => rebased on master
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b1297e716..287f93bd1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -452,9 +452,12 @@ link_directories(${LIBUNWIND_LIBRARY_DIRS}) # Final setup for libpcsc if (PCSC_FOUND) + message(STATUS "Using PCSC include dir at ${PCSC_INCLUDE_DIR}") add_definitions(-DHAVE_PCSC) include_directories(${PCSC_INCLUDE_DIR}) link_directories(${LIBPCSC_LIBRARY_DIRS}) +else (PCSC_FOUND) + message(STATUS "Could not find PCSC") endif() if(MSVC) |