blob: 6a9c2ec351f65548eafdb75671842aa00f2bffca (
plain)
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
|
#-------------------------------------------------
#
# Project created by QtCreator 2015-08-31T14:25:17
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = CryptLog
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
passworddialog.cpp \
publickeyimportdialog.cpp \
crypt/hybridcrypt.cpp \
crypt/cryptexception.cpp \
decryptdatadialog.cpp
HEADERS += mainwindow.h \
passworddialog.h \
publickeyimportdialog.h \
crypt/hybridcrypt.h \
crypt/cryptexception.h \
decryptdatadialog.h
FORMS += mainwindow.ui \
passworddialog.ui \
publickeyimportdialog.ui \
decryptdatadialog.ui
RESOURCES += \
ressources.qrc
unix: CONFIG += link_pkgconfig
unix: PKGCONFIG += openssl
|