-
Notifications
You must be signed in to change notification settings - Fork 0
/
crypto.pro
59 lines (50 loc) · 1.23 KB
/
crypto.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-10-08T19:30:05
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = crypto
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
caesarcipher.cpp \
cryptohelper.cpp \
caesarafcipher.cpp \
caesarkwcipher.cpp \
playfaircipher.cpp \
trithemiuscipher.cpp \
vigenerecipher.cpp \
magicsquarecipher.cpp \
wheatstonecipher.cpp \
settingsdialog.cpp \
aboutdialog.cpp \
abstractcipherview.cpp
HEADERS += mainwindow.h \
caesarcipher.h \
cryptohelper.h \
caesarafcipher.h \
caesarkwcipher.h \
playfaircipher.h \
trithemiuscipher.h \
vigenerecipher.h \
magicsquarecipher.h \
wheatstonecipher.h \
settingsdialog.h \
aboutdialog.h \
abstractcipherview.h
FORMS += mainwindow.ui \
caesarcipher.ui \
caesarafcipher.ui \
caesarkwcipher.ui \
playfaircipher.ui \
trithemiuscipher.ui \
vigenerecipher.ui \
magicsquarecipher.ui \
wheatstonecipher.ui \
settingsdialog.ui \
aboutdialog.ui \
abstractcipherview.ui
RESOURCES +=
TRANSLATIONS += translations/ru.ts