-
Notifications
You must be signed in to change notification settings - Fork 24
/
FractalCrypt.pro
89 lines (79 loc) · 2.1 KB
/
FractalCrypt.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
QT += core gui widgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
DEFINES += QUAZIP_STATIC
win32 {
INCLUDEPATH += C:/OpenSSL-Win64/include
LIBS += -LC:/OpenSSL-Win64/lib -llibcrypto
RC_ICONS = logo.ico
QMAKE_TARGET_DESCRIPTION = FractalCrypt
}
unix {
LIBS += -largon2 -ldl -lz -lcrypto
}
SOURCES += \
main.cpp \
core/aes.cpp \
core/directorysizecalculator.cpp \
core/fractalcryptcore.cpp \
core/quazipfunctions.cpp \
widgets/archivewindow.cpp \
widgets/createcontainerwindow.cpp \
widgets/mainwindow.cpp \
widgets/progressdialog.cpp \
widgets/resizecontainerwindow.cpp \
widgets/startwindow.cpp \
quazip/JlCompress.cpp \
quazip/qioapi.cpp \
quazip/quaadler32.cpp \
quazip/quacrc32.cpp \
quazip/quagzipfile.cpp \
quazip/quaziodevice.cpp \
quazip/quazip.cpp \
quazip/quazipdir.cpp \
quazip/quazipfile.cpp \
quazip/quazipfileinfo.cpp \
quazip/quazipnewinfo.cpp \
quazip/unzip.c \
quazip/zip.c
HEADERS += \
core/aes.h \
core/argon2.h \
core/directorysizecalculator.h \
core/fractalcryptcore.h \
core/noizecreator.hpp \
core/quazipfunctions.h \
widgets/archivewindow.h \
widgets/createcontainerwindow.h \
widgets/resizecontainerwindow.h \
widgets/startwindow.h \
widgets/mainwindow.h \
widgets/progressdialog.h \
quazip/JlCompress.h \
quazip/crypt.h \
quazip/ioapi.h \
quazip/quaadler32.h \
quazip/quachecksum32.h \
quazip/quacrc32.h \
quazip/quagzipfile.h \
quazip/quaziodevice.h \
quazip/quazip.h \
quazip/quazip_global.h \
quazip/quazipdir.h \
quazip/quazipfile.h \
quazip/quazipfileinfo.h \
quazip/quazipnewinfo.h \
quazip/unzip.h \
quazip/zip.h
FORMS += \
ui/archivewindow.ui \
ui/createcontainerwindow.ui \
ui/mainwindow.ui \
ui/progressdialog.ui \
ui/resizecontainerwindow.ui \
ui/startwindow.ui
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
resources.qrc