keepassxc

Форк
0
/
FindPCSC.cmake 
39 строк · 1.4 Кб
1
#  Copyright (C) 2021 KeePassXC Team <team@keepassxc.org>
2
#
3
#  This program is free software: you can redistribute it and/or modify
4
#  it under the terms of the GNU General Public License as published by
5
#  the Free Software Foundation, either version 2 or (at your option)
6
#  version 3 of the License.
7
#
8
#  This program is distributed in the hope that it will be useful,
9
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
10
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
#  GNU General Public License for more details.
12
#
13
#  You should have received a copy of the GNU General Public License
14
#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
15

16
# Use pkgconfig on Linux
17
if(NOT WIN32)
18
   find_package(PkgConfig QUIET)
19
   pkg_check_modules(PCSC libpcsclite)
20
endif()
21

22
if(NOT PCSC_FOUND)
23
   # Search for PC/SC headers on Mac and Windows
24
   find_path(PCSC_INCLUDE_DIRS winscard.h
25
      HINTS
26
      ${CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES}
27
      /usr/include/PCSC
28
      PATH_SUFFIXES PCSC)
29

30
   # MAC library is PCSC, Windows library is WinSCard
31
   find_library(PCSC_LIBRARIES NAMES pcsclite libpcsclite WinSCard PCSC
32
      HINTS   
33
      ${CMAKE_C_IMPLICIT_LINK_DIRECTORIES})
34
endif()
35

36
include(FindPackageHandleStandardArgs)
37
find_package_handle_standard_args(PCSC DEFAULT_MSG PCSC_LIBRARIES PCSC_INCLUDE_DIRS)
38

39
mark_as_advanced(PCSC_LIBRARIES PCSC_INCLUDE_DIRS)
40

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.