sneakin / mypasswordsafe

Aging Qt based password manager for OS X, Linux, and maybe Windows.

This URL has Read+Write access

mypasswordsafe / MyPasswordSafe.pro
100644 102 lines (90 sloc) 2.125 kb
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
TEMPLATE = app
LANGUAGE = C++
ICON = images/keys.icns
 
CONFIG += qt warn_on
 
LIBS += uuid-1.0.0/.libs/libuuid.a
INCLUDEPATH += uuid-1.0.0 src
 
# idle
CONFIG += idle
IDLE_CPP = src/tools/idle
INCLUDEPATH += $$IDLE_CPP
unix {
QMAKE_X11_LIBS += -lXss
}
include($$IDLE_CPP/idle.pri)
 
HEADERS += src/safe.hpp \
src/safeserializer.hpp \
src/securedstring.hpp \
src/encryptedstring.hpp \
src/serializers.hpp \
src/pwsafe/PW_BlowFish.h \
src/pwsafe/Util.h \
src/pwsafe/PW_sha1.h \
src/pwsafe/PwsPlatform.h \
src/myutil.hpp \
src/exception.hpp \
src/startupdlg.hpp \
src/config.h \
src/smartptr.hpp \
src/safelistview.hpp \
src/uuid.hpp \
src/xmlserializer.hpp \
src/plaintextlizer.hpp \
src/safedragobject.hpp \
src/myendian.h \
src/crypto/sha1.h \
src/crypto/blowfish.h \
        src/crypto/cryptointerface.hpp \
        src/crypto/bfproxy.hpp \
        src/clipboard.hpp
 
SOURCES += src/main.cpp \
src/securedstring.cpp \
src/safe.cpp \
src/safeserializer.cpp \
src/serializers.cpp \
src/encryptedstring.cpp \
src/pwsafe/PW_BlowFish.cpp \
src/pwsafe/Util.cpp \
src/pwsafe/PW_sha1.cpp \
src/myutil.cpp \
src/startupdlg.cpp \
src/smartptr.cpp \
src/safelistview.cpp \
src/uuid.cpp \
src/xmlserializer.cpp \
src/plaintextlizer.cpp \
src/safedragobject.cpp \
src/crypto/sha1.cpp \
src/crypto/blowfish.cpp \
        src/crypto/bfproxy.cpp \
        src/clipboard.cpp
 
#The following line was changed from FORMS to FORMS3 by qt3to4
FORMS3 = src/mypasswordsafe.ui \
src/pwordeditdlg.ui \
src/passphrasedlg.ui \
src/preferencesdlg.ui \
src/aboutdlg.ui \
src/manualdlg.ui \
src/startupdlgbase.ui \
src/newpassphrasedlg.ui
 
RESOURCES = resources.qrc
 
DEBUG = $$(DEBUG)
 
isEmpty(DEBUG) {
config += release
} else {
config += debug
DEFINES += DEBUG
}
 
unix {
  UI_DIR = .ui
  MOC_DIR = .moc
  OBJECTS_DIR = .obj
}
TRANSLATIONS = locale/mypasswordsafe_en.ts \
locale/mypasswordsafe_c.ts \
locale/mypasswordsafe_fr.ts \
        locale/mypasswordsafe_pig.ts
#The following line was inserted by qt3to4
QT += xml qt3support
#The following line was inserted by qt3to4
CONFIG += uic3