-
Notifications
You must be signed in to change notification settings - Fork 1
/
HashMan.pro
48 lines (42 loc) · 1.12 KB
/
HashMan.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
TARGET = "HashMan"
macx {
# Include spaces in the file name if on Mac OS X.
TARGET = "HashMan"
QMAKE_INFO_PLIST += Info.plist
QMAKE_MAC_SDK = 10.13
OTHER_FILES += Info.plist
}
QT += widgets \
gui \
core
HEADERS = hashcalcapplication.h \
hashproject/sourcedirectory.h \
hashproject/hashproject.h \
hashproject/filelist.h \
gui/sourcedirectorywidget.h \
gui/menuactions.h \
gui/mainwindow.h \
gui/filedrop.h \
gui/statusboxwidget.h \
workers/filefinder.h \
workers/hasher.h \
algorithms/crc32algorithm.h \
algorithms/hashalgorithm.h \
algorithms/qtcryptoalgorithms.h
SOURCES = hashcalcapplication.cpp \
main.cpp \
hashproject/sourcedirectory.cpp \
hashproject/filelist.cpp \
hashproject/hashproject.cpp \
gui/sourcedirectorywidget.cpp \
gui/mainwindow.cpp \
gui/menuactions.cpp \
gui/filedrop.cpp \
gui/statusboxwidget.cpp \
workers/filefinder.cpp \
workers/hasher.cpp \
algorithms/crc32algorithm.cpp \
algorithms/qtcryptoalgorithms.cpp
RESOURCES += HashMan.qrc
RC_ICONS += images/mainicon.ico
ICON += images/mainicon.icns