-
Notifications
You must be signed in to change notification settings - Fork 128
/
johnny.pro
72 lines (57 loc) · 1.76 KB
/
johnny.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
CONFIG += qt
## Default build is debug
#CONFIG -= release
#CONFIG += debug
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = johnny
# The application version
VERSION = 2.2
# Define the preprocessor macro to get the application version in our application.
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
TEMPLATE = app
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/translator.cpp \
src/johnprocess.cpp \
src/hashtypechecker.cpp \
src/textlabel.cpp \
src/johnhandler.cpp \
src/johnattack.cpp \
src/menu.cpp \
src/tabwidget.cpp \
src/johnsession.cpp \
src/hashsortfilterproxymodel.cpp \
src/passwordfilemodel.cpp \
src/openotherformatfiledialog.cpp
HEADERS += src/mainwindow.h \
src/translator.h \
src/johnprocess.h \
src/hashtypechecker.h \
src/textlabel.h \
src/johnhandler.h \
src/johnattack.h \
src/menu.h \
src/tabwidget.h \
src/johnsession.h \
src/hashsortfilterproxymodel.h \
src/passwordfilemodel.h \
src/openotherformatfiledialog.h
INCLUDEPATH += src/
FORMS += forms/mainwindow.ui \
forms/aboutwidget.ui \
forms/openotherformatfiledialog.ui
TRANSLATIONS = translations/johnny_fr.ts
CODECFORTR = UTF-8
RESOURCES += resources/resources.qrc
OTHER_FILES += README \
LICENSE \
INSTALL \
CHANGELOG \
DEVELOPMENT
osx {
TARGET = Johnny
ICON = resources/icons/johnny.icns
# Build universal binary on OS X for Release target
release: CONFIG += x86 ppc x86_64 ppc64
}