-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVideoCompression.pro
More file actions
64 lines (58 loc) · 1.57 KB
/
VideoCompression.pro
File metadata and controls
64 lines (58 loc) · 1.57 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
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += \
commands/interactive.cpp \
commands/maintanance.cpp \
commands/transfer.cpp \
structures/TransferInfo.cpp \
structures/NeighborInfo.cpp \
structures/WindowPrinter.cpp \
structures/HistoryStorage.cpp \
structures/MyAddr.cpp \
helpers/chunk_helper.cpp \
helpers/network_helper.cpp \
helpers/OShelper.cpp \
sources/commands.cpp \
sources/handle_IO.cpp \
sources/main.cpp \
sources/utilities.cpp \
structures/NeighborStorage.cpp \
helpers/senders_receivers.cpp \
structures/NetworkHandler.cpp \
structures/TaskHandler.cpp
HEADERS += \
commands/interactive.h \
commands/maintanance.h \
commands/transfer.h \
structures/TaskHandler.h \
structures/WindowPrinter.h \
structures/singletons.h \
structures/HistoryStorage.h \
structures/structures.h \
structures/NeighborInfo.h \
structures/TransferInfo.h \
helpers/chunk_helper.h \
helpers/network_helper.h \
helpers/OShelper.h \
headers/commands.h \
headers/defines.h \
headers/enums_types.h \
headers/handle_IO.h \
headers/include_list.h \
headers/templates.h \
headers/utilities.h \
structures/SynchronizedQueue.h \
structures/NeighborStorage.h \
helpers/senders_receivers.h \
structures/NetworkHandler.h
QMAKE_CXXFLAGS += -std=c++11 \
-pthread \
-fPIC \
-g \
-fpermissive
QMAKE_CFLAGS += -pthread \
-fPIC
LIBS += -pthread \
unix|win32: LIBS += -lcurses