-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSteghide-GUI.pro
170 lines (159 loc) · 5.03 KB
/
Steghide-GUI.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#-------------------------------------------------
#
# Project created by QtCreator 2015-08-17T15:07:41
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Steghide-GUI
TEMPLATE = app
DEFINES += "USE_LIBJPEG=1"\
"USE_LIBMCRYPT=1"\
"USE_ZLIB=1"\
"HAVE_CONFIG_H=1"\
"_FORTIFY_SOURCE=2"\
LOCALEDIR=\\\"/usr/local/share/locale\\\"
QMAKE_CC = "/usr/bin/gcc -E"
QMAKE_CFLAGS = "-O2 -pipe -fstack-protector-strong -fpermissive --param=ssp-buffer-size=4"
QMAKE_CXXFLAGS = "-O2 -pipe -fstack-protector -fpermissive"
QMAKE_CXX= "/usr/bin/g++"
QMAKE_LFLAGS = "-Wl,-O1,--sort-common,--as-needed,-z,relro"
LIBS += -lz\
-lmhash\
-lmcrypt\
-ljpeg
SOURCES += main.cpp\
mainwindow.cpp \
dialog.cpp \
FilesToAddListModel.cpp \
FilesToAdd.cpp \
steghide-src/Arg.cc \
steghide-src/Arguments.cc \
steghide-src/AssertionFailed.cc \
steghide-src/AuFile.cc \
steghide-src/AuSampleValues.cc \
steghide-src/BFSAPHeuristic.cc \
steghide-src/BinaryIO.cc \
steghide-src/BitString.cc \
steghide-src/BmpFile.cc \
steghide-src/BmpPaletteSampleValue.cc \
steghide-src/BmpRGBSampleValue.cc \
steghide-src/BmpSampleValue.cc \
steghide-src/CvrStgFile.cc \
steghide-src/DFSAPHeuristic.cc \
steghide-src/DMDConstructionHeuristic.cc \
steghide-src/Edge.cc \
steghide-src/EdgeIterator.cc \
steghide-src/EmbData.cc \
steghide-src/Embedder.cc \
steghide-src/EncryptionAlgorithm.cc \
steghide-src/EncryptionMode.cc \
steghide-src/error.cc \
steghide-src/Extractor.cc \
steghide-src/Graph.cc \
steghide-src/JpegFile.cc \
steghide-src/JpegSampleValue.cc \
steghide-src/Matching.cc \
steghide-src/MatchingAlgorithm.cc \
steghide-src/MCryptPP.cc \
steghide-src/MHashKeyGen.cc \
steghide-src/MHashPP.cc \
steghide-src/msg.cc \
steghide-src/ProgressOutput.cc \
steghide-src/PseudoRandomSource.cc \
steghide-src/RandomSource.cc \
steghide-src/RGBTriple.cc \
steghide-src/SampleValue.cc \
steghide-src/SampleValueAdjacencyList.cc \
steghide-src/Selector.cc \
steghide-src/Session.cc \
steghide-src/SMDConstructionHeuristic.cc \
steghide-src/SteghideError.cc \
steghide-src/Terminal.cc \
steghide-src/Utils.cc \
steghide-src/Vertex.cc \
steghide-src/WavChunk.cc \
steghide-src/WavChunkHeader.cc \
steghide-src/WavChunkUnused.cc \
steghide-src/WavFile.cc \
steghide-src/WavFormatChunk.cc \
steghide-src/WavPCMSampleValue.cc \
steghide-src/WKSConstructionHeuristic.cc \
extractdialog.cpp
HEADERS += mainwindow.h \
dialog.h \
FilesToAddListModel.h \
FilesToAdd.h \
steghide-src/Arg.h \
steghide-src/Arguments.h \
steghide-src/AssertionFailed.h \
steghide-src/AuData.h \
steghide-src/AudioData.h \
steghide-src/AudioSampleValue.h \
steghide-src/AuFile.h \
steghide-src/AuSampleValues.h \
steghide-src/AUtils.h \
steghide-src/BFSAPHeuristic.h \
steghide-src/BinaryIO.h \
steghide-src/BitString.h \
steghide-src/BmpFile.h \
steghide-src/BmpPaletteSampleValue.h \
steghide-src/BmpRGBSampleValue.h \
steghide-src/BmpSampleValue.h \
steghide-src/ColorPalette.h \
steghide-src/common.h \
steghide-src/CvrStgFile.h \
steghide-src/CvrStgObject.h \
steghide-src/DFSAPHeuristic.h \
steghide-src/DMDConstructionHeuristic.h \
steghide-src/Edge.h \
steghide-src/EdgeIterator.h \
steghide-src/EmbData.h \
steghide-src/Embedder.h \
steghide-src/EncryptionAlgorithm.h \
steghide-src/EncryptionMode.h \
steghide-src/error.h \
steghide-src/Extractor.h \
steghide-src/gettext.h \
steghide-src/Globals.h \
steghide-src/Graph.h \
steghide-src/JpegFile.h \
steghide-src/JpegSampleValue.h \
steghide-src/Matching.h \
steghide-src/MatchingAlgorithm.h \
steghide-src/MCryptPP.h \
steghide-src/MHashKeyGen.h \
steghide-src/MHashPP.h \
steghide-src/msg.h \
steghide-src/ProgressOutput.h \
steghide-src/PseudoRandomSource.h \
steghide-src/RandomSource.h \
steghide-src/RGBTriple.h \
steghide-src/SampleOccurence.h \
steghide-src/SampleValue.h \
steghide-src/SampleValueAdjacencyList.h \
steghide-src/Selector.h \
steghide-src/Session.h \
steghide-src/SMDConstructionHeuristic.h \
steghide-src/SteghideError.h \
steghide-src/Terminal.h \
steghide-src/Utils.h \
steghide-src/Vertex.h \
steghide-src/WavChunk.h \
steghide-src/WavChunkHeader.h \
steghide-src/WavChunkUnused.h \
steghide-src/WavFile.h \
steghide-src/WavFormatChunk.h \
steghide-src/WavPCMSampleValue.h \
steghide-src/WKSConstructionHeuristic.h \
steghide-src/wrapper_hash_map.h \
steghide-src/wrapper_hash_set.h \
extractdialog.h \
config.h \
StdRedirection.h
FORMS += mainwindow.ui \
dialog.ui \
extractdialog.ui
DISTFILES +=
RESOURCES += \
imageresources.qrc