-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIdTool.pro
114 lines (95 loc) · 3.42 KB
/
IdTool.pro
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
108
109
110
111
112
113
114
#-------------------------------------------------
#
# Project created by QtCreator 2019-09-01T10:51:49
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = IdTool
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
CONFIG += c++11
# Copy the "blockdef" directory to the build directory
copyblockdef.commands = $(COPY_DIR) \"$$shell_path($$PWD\\blockdef)\" \"$$shell_path($$OUT_PWD\\blockdef)\"
first.depends = $(first) copyblockdef
export(first.depends)
export(copyblockdef.commands)
QMAKE_EXTRA_TARGETS += first copyblockdef
SOURCES += \
inc/bigint/BigInteger.cc \
inc/bigint/BigIntegerAlgorithms.cc \
inc/bigint/BigIntegerUtils.cc \
inc/bigint/BigUnsigned.cc \
inc/bigint/BigUnsignedInABase.cc \
src/blockdesignerdialog.cpp \
src/cryptutil.cpp \
src/diffdialog.cpp \
src/identityclipboard.cpp \
src/identitymodel.cpp \
src/identityparser.cpp \
src/idsetdialog.cpp \
src/itemeditordialog.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/tabmanager.cpp \
src/uibuilder.cpp
HEADERS += \
inc/bigint/BigInteger.hh \
inc/bigint/BigIntegerAlgorithms.hh \
inc/bigint/BigIntegerLibrary.hh \
inc/bigint/BigIntegerUtils.hh \
inc/bigint/BigUnsigned.hh \
inc/bigint/BigUnsignedInABase.hh \
inc/bigint/NumberlikeArray.hh \
src/blockdesignerdialog.h \
src/common.h \
src/cryptutil.h \
src/diffdialog.h \
src/identityclipboard.h \
src/identitymodel.h \
src/identityparser.h \
src/idsetdialog.h \
src/itemeditordialog.h \
src/mainwindow.h \
src/tabmanager.h \
src/uibuilder.h
FORMS += \
ui/blockdesignerdialog.ui \
ui/diffdialog.ui \
ui/idsetdialog.ui \
ui/itemeditordialog.ui \
ui/mainwindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
res.qrc
RC_FILE = IdTool.rc
VERSION = 0.5.0 # major.minor.patch
DEFINES += APP_VERSION=\\\"$$VERSION\\\" \
SODIUM_STATIC
DISTFILES += \
CHANGELOG \
README.md \
blockdef/1.json \
blockdef/2.json \
blockdef/3.json \
lib/sodium/lib/libsodium.lib \
lib/sodium/lib/libsodium.so \
lib/sodium/lib/libsodiumd.lib
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/lib/sodium/lib/ -llibsodium
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/lib/sodium/lib/ -llibsodiumd
else:unix: LIBS += -L$$PWD/lib/sodium/lib/ -lsodium
INCLUDEPATH += $$PWD/lib/sodium/include
DEPENDPATH += $$PWD/lib/sodium/include
QMAKE_LFLAGS_WINDOWS += /NODEFAULTLIB:LIBCMTD \
/NODEFAULTLIB:LIBCMT