-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitslinger.pro
More file actions
105 lines (93 loc) · 2.36 KB
/
Copy pathbitslinger.pro
File metadata and controls
105 lines (93 loc) · 2.36 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-31T12:50:18
#
#-------------------------------------------------
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = bitslinger
TEMPLATE = app
#INCLUDEPATH += c:/OpenSSL-Win64/include
win32: {
contains(QMAKE_HOST.arch, x86_64):{
INCLUDEPATH += c:/OpenSSL-Win64/include
} else {
INCLUDEPATH += c:/OpenSSL-Win32/include
}
}
gcc|clang:QMAKE_CXXFLAGS += -Wall -Wextra
contains(QT_CONFIG, openssl-linked) {
win32-msvc {
LIBS += -leay32
}
else {
LIBS += -lcrypto
}
}
SOURCES += main.cpp\
mainwindow.cpp \
connection.cpp \
journal.cpp \
qhexedit2/chunks.cpp \
qhexedit2/commands.cpp \
qhexedit2/qhexedit.cpp \
bitslinger.cpp \
journalview.cpp \
listener.cpp \
listenerdialog.cpp \
listenereditdialog.cpp \
settingsdialog.cpp \
settingspage.cpp \
settings/proxysettingspage.cpp \
utils/openssl_symbol_helper.cpp \
utils/certificategenerator.cpp \
utils/tcpserver.cpp \
settings/sslcasettingspage.cpp \
utils/hostnamelineedit.cpp \
utils/colorutils.cpp \
utils/recentfilesmenu.cpp \
utils/sslconfigurationwidget.cpp \
abstracttool.cpp \
proxytool.cpp \
proxytoolview.cpp \
utils/httpproxyrequesthandler.cpp
HEADERS += mainwindow.h \
connection.h \
journal.h \
qhexedit2/chunks.h \
qhexedit2/commands.h \
qhexedit2/qhexedit.h \
bitslinger.h \
journalview.h \
listener.h \
listenerdialog.h \
listenereditdialog.h \
settingsdialog.h \
settingspage.h \
settings/proxysettingspage.h \
utils/openssl_symbol_helper.h \
utils/certificategenerator.h \
utils/tcpserver.h \
settings/sslcasettingspage.h \
utils/hostnamelineedit.h \
utils/colorutils.h \
utils/recentfilesmenu.h \
utils/sslconfigurationwidget.h \
abstracttool.h \
proxytool.h \
proxytoolview.h \
utils/httpproxyrequesthandler.h
FORMS += mainwindow.ui \
mockups/mainview_mockup.ui \
listenerdialog.ui \
listenereditdialog.ui \
settingsdialog.ui \
settings/proxysettingspage.ui \
settings/sslcasettingspage.ui \
utils/sslconfigurationwidget.ui \
proxytoolview.ui
DISTFILES += \
NOTES.txt \
state_format.txt
RESOURCES += \
bitslinger.qrc