1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
# Created by and for Qt Creator. This file was created for editing the project sources only.
# You may attempt to use it for building too, by modifying this file here.
CONFIG += c++14 shared debug
TEMPLATE = lib
TARGET = nitrokey
VERSION = 3.7.0
LIBNK_VERSION_MAJOR = 3
LIBNK_VERSION_MINOR = 7
QMAKE_TARGET_COMPANY = Nitrokey
QMAKE_TARGET_PRODUCT = libnitrokey
QMAKE_TARGET_DESCRIPTION = Communicate with Nitrokey stick devices in a clean and easy manner
QMAKE_TARGET_COPYRIGHT = Copyright (c) 2015-2022 Nitrokey Gmbh
HEADERS = \
$$PWD/hidapi/hidapi/hidapi.h \
$$PWD/libnitrokey/command.h \
$$PWD/libnitrokey/command_id.h \
$$PWD/libnitrokey/CommandFailedException.h \
$$PWD/libnitrokey/cxx_semantics.h \
$$PWD/libnitrokey/device.h \
$$PWD/libnitrokey/device_proto.h \
$$PWD/libnitrokey/DeviceCommunicationExceptions.h \
$$PWD/libnitrokey/dissect.h \
$$PWD/libnitrokey/LibraryException.h \
$$PWD/libnitrokey/log.h \
$$PWD/libnitrokey/version.h \
$$PWD/libnitrokey/LongOperationInProgressException.h \
$$PWD/libnitrokey/misc.h \
$$PWD/libnitrokey/NitrokeyManager.h \
$$PWD/libnitrokey/stick10_commands.h \
$$PWD/libnitrokey/stick10_commands_0.8.h \
$$PWD/libnitrokey/stick20_commands.h \
$$PWD/NK_C_API.h
SOURCES = \
$$PWD/command_id.cc \
$$PWD/device.cc \
$$PWD/DeviceCommunicationExceptions.cpp \
$$PWD/log.cc \
$$PWD/version.cc \
$$PWD/misc.cc \
$$PWD/NitrokeyManager.cc \
$$PWD/NK_C_API.cc
tests {
SOURCES += \
$$PWD/unittest/catch_main.cpp \
$$PWD/unittest/test.cc \
$$PWD/unittest/test2.cc \
$$PWD/unittest/test3.cc \
$$PWD/unittest/test_C_API.cpp \
$$PWD/unittest/test_HOTP.cc
}
unix:!macx{
# SOURCES += $$PWD/hidapi/linux/hid.c
LIBS += -lhidapi-libusb
}
macx{
SOURCES += $$PWD/hidapi/mac/hid.c
LIBS+= -framework IOKit -framework CoreFoundation
}
win32 {
SOURCES += $$PWD/hidapi/windows/hid.c
LIBS += -lsetupapi
}
INCLUDEPATH = \
$$PWD/. \
$$PWD/hidapi/hidapi \
$$PWD/libnitrokey \
$$PWD/libnitrokey/hidapi \
$$PWD/unittest \
$$PWD/unittest/Catch/single_include
unix:!macx{
# Install rules for QMake (CMake is preffered though)
udevrules.path = $$system(pkg-config --variable=udevdir udev)
isEmpty(udevrules.path){
udevrules.path = "/lib/udev/"
message("Could not detect path for udev rules - setting default: " $$udevrules.path)
}
udevrules.path = $$udevrules.path"/rules.d"
udevrules.files = $$PWD/"data/41-nitrokey.rules"
message ($$udevrules.files)
INSTALLS +=udevrules
headers.files = $$HEADERS
headers.path = /usr/local/include/libnitrokey/
INSTALLS += headers
libbin.path = /usr/local/lib
INSTALLS += libbin
}
DEFINES += LIBNK_GIT_VERSION=\"\\\"$$system(git describe --abbrev=4 --always)\\\"\" LIBNK_VERSION="\\\"$${VERSION}\\\""
DEFINES += LIBNK_VERSION_MAJOR=$${LIBNK_VERSION_MAJOR} LIBNK_VERSION_MINOR=$${LIBNK_VERSION_MINOR}
message($$DEFINES)
|