blob: 621a13710b4fd39f172762dba3709838c88e266f (
plain)
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
|
# 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.
#TARGET = libnitrokey
CONFIG += c++14 staticlib
#QT =
TEMPLATE = lib
TARGET = nitrokey
HEADERS = \
$$PWD/hidapi/hidapi/hidapi.h \
# $$PWD/include/hidapi/hidapi.h \
$$PWD/include/command.h \
$$PWD/include/command_id.h \
$$PWD/include/CommandFailedException.h \
$$PWD/include/cxx_semantics.h \
$$PWD/include/device.h \
$$PWD/include/device_proto.h \
$$PWD/include/DeviceCommunicationExceptions.h \
$$PWD/include/dissect.h \
$$PWD/include/inttypes.h \
$$PWD/include/LibraryException.h \
$$PWD/include/log.h \
$$PWD/include/LongOperationInProgressException.h \
$$PWD/include/misc.h \
$$PWD/include/NitrokeyManager.h \
$$PWD/include/stick10_commands.h \
$$PWD/include/stick10_commands_0.8.h \
$$PWD/include/stick20_commands.h \
$$PWD/NK_C_API.h
SOURCES = \
$$PWD/command_id.cc \
$$PWD/device.cc \
$$PWD/DeviceCommunicationExceptions.cpp \
$$PWD/log.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
}
unix{
SOURCES += $$PWD/hidapi/mac/hid.c
}
#win32 {
SOURCES += $$PWD/hidapi/windows/hid.c
LIBS += -lsetupapi
#}
INCLUDEPATH = \
$$PWD/. \
$$PWD/hidapi/hidapi \
$$PWD/include \
$$PWD/include/hidapi \
$$PWD/unittest \
$$PWD/unittest/Catch/single_include
#DEFINES =
|