-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathImgception.pro
More file actions
executable file
·62 lines (52 loc) · 1.29 KB
/
Imgception.pro
File metadata and controls
executable file
·62 lines (52 loc) · 1.29 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
#-------------------------------------------------
#
# Project created by QtCreator 2015-11-28T19:19:45
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Imgception
TEMPLATE = app
SOURCES += src/main_client.cpp \
src/image.cpp \
src/transmittable.cpp \
src/peer.cpp \
src/update.cpp \
src/notification.cpp \
src/key.cpp \
src/Views.cpp \
src/UDPsocket.cpp \
src/onlinepeers.cpp \
src/Steganifier.cpp \
src/PeriodicUpdate.cpp \
src/serverthread.cpp \
src/peerprogram.cpp \
src/dialog.cpp \
src/mainwindow.cpp \
src/newupload2.cpp
HEADERS += include/image.h \
include/transmittable.h \
include/peer.h \
include/update.h \
include/notification.h \
include/key.h \
include/Views.h \
include/UDPsocket.h \
include/onlinepeers.h \
include/Steganifier.h \
include/PeriodicUpdate.h \
include/serverthread.h \
include/peerprogram.h \
include/dialog.h \
include/mainwindow.h \
include/newupload2.h
INCLUDEPATH += include/ \
/usr/include/python2.7 \
include/
FORMS += dialog.ui \
mainwindow.ui \
newupload2.ui
CONFIG += c++11
LIBS += -pthread -lssl -lcrypto -lpython2.7
RESOURCES += \
myApp.qrc