-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
src.pro
71 lines (63 loc) · 2.01 KB
/
src.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
!include(../qtpass.pri) { error("Couldn't find the qtpass.pri file!") }
TEMPLATE = lib
QT += core gui
TARGET = qtpass
CONFIG += c++11 staticlib
CONFIG(release, debug|release):DEFINES += QT_NO_DEBUG_OUTPUT
SOURCES += mainwindow.cpp \
configdialog.cpp \
storemodel.cpp \
util.cpp \
usersdialog.cpp \
keygendialog.cpp \
trayicon.cpp \
passworddialog.cpp \
qprogressindicator.cpp \
qpushbuttonwithclipboard.cpp \
qtpasssettings.cpp \
settingsconstants.cpp \
pass.cpp \
realpass.cpp \
imitatepass.cpp \
executor.cpp \
simpletransaction.cpp \
filecontent.cpp
HEADERS += mainwindow.h \
configdialog.h \
storemodel.h \
util.h \
usersdialog.h \
keygendialog.h \
trayicon.h \
passworddialog.h \
qprogressindicator.h \
deselectabletreeview.h \
qpushbuttonwithclipboard.h \
qtpasssettings.h \
enums.h \
settingsconstants.h \
pass.h \
realpass.h \
imitatepass.h \
debughelper.h \
executor.h \
simpletransaction.h \
filecontent.h \
passwordconfiguration.h \
userinfo.h
FORMS += mainwindow.ui \
configdialog.ui \
usersdialog.ui \
keygendialog.ui \
passworddialog.ui
updateqm.input = TRANSLATIONS
updateqm.output = ../localization/${QMAKE_FILE_BASE}.qm
updateqm.commands = $$QMAKE_LRELEASE ${QMAKE_FILE_IN} -qm ../localization/${QMAKE_FILE_BASE}.qm
updateqm.CONFIG += no_link target_predeps
QMAKE_EXTRA_COMPILERS += updateqm
PRE_TARGETDEPS += compiler_updateqm_make_all
!nosingleapp {
SOURCES += singleapplication.cpp
HEADERS += singleapplication.h
}
RESOURCES += ../resources.qrc