-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCaptureStream2.pro
More file actions
127 lines (115 loc) · 2.54 KB
/
CaptureStream2.pro
File metadata and controls
127 lines (115 loc) · 2.54 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# -------------------------------------------------
# Project created by QtCreator 2009-04-20T14:05:07
# -------------------------------------------------
QT += network \
gui \
core \
xml \
widgets
#greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
#equals(QT_MAJOR_VERSION, 6): QT += core5compat
DEFINES += QT_DISABLE_DEPRECATED_UP_TO=0x050F00
TARGET = CaptureStream2
TEMPLATE = app
INCLUDEPATH += $$PWD/core
HEADERS += \
gui/mainwindow.h \
core/appsettings.h
SOURCES += main.cpp \
mainwindow.cpp \
customizedialog.cpp \
messagewindow.cpp \
scrambledialog.cpp \
settingsdialog.cpp \
utility.cpp \
settings.cpp \
runtimeconfig.cpp \
commandlineparser.cpp \
constants_core.cpp \
constants_programs.cpp \
constants_flags.cpp \
constants_cli.cpp \
clicontroller.cpp \
programrepository.cpp \
recordingcore.cpp \
guistate.cpp \
programresolver.cpp \
programlistservice.cpp \
programformatter.cpp \
networkclient.cpp \
ffmpegcapabilities.cpp \
presetrepository.cpp \
ffmpegcommandbuilder.cpp \
thumbnailoptionsbuilder.cpp \
ffmpegexecutor.cpp \
ffmpegrunner.cpp \
nhkcalendar.cpp \
outputpathbuilder.cpp \
episodeformatter.cpp \
legacyformatengine.cpp
HEADERS += mainwindow.h \
constants.h \
constants_core.h \
constants_programs.h \
constants_flags.h \
constants_cli.h \
customizedialog.h \
messagewindow.h \
scrambledialog.h \
settingsdialog.h \
utility.h \
constants.h \
settings.h \
runtimeconfig.h \
commandlineparser.h \
clioptions.h \
programrepository.h \
recordingcore.h \
guistate.h \
programresolver.h \
programresolver.h \
programlistservice.h \
programformatter.h \
networkclient.h \
ffmpegcapabilities.h \
presetrepository.h \
ffmpegcommandbuilder.h \
thumbnailoptionsbuilder.h \
ffmpegexecutor.h \
ffmpegrunner.h \
nhkcalendar.h \
outputpathbuilder.h \
episodeformatter.h \
episodeinfo.h \
legacyformatengine.h
equals(QT_MAJOR_VERSION, 5): HEADERS += mp3.h
FORMS += mainwindow.ui \
customizedialog.ui \
messagewindow.ui \
scrambledialog.ui \
settingsdialog.ui
windows {
RC_ICONS = icon.ico
}
linux {
QMAKE_LFLAGS += -no-pie
}
macx {
QMAKE_CFLAGS_RELEASE += -fvisibility=hidden
QMAKE_CXXFLAGS_RELEASE += -fvisibility=hidden
# QMAKE_APPLE_DEVICE_ARCHS = x86_64 arm64
x86 {
CONFIG += c++11
QMAKE_CFLAGS_RELEASE += -mmacosx-version-min=10.12
QMAKE_CXXFLAGS_RELEASE += -mmacosx-version-min=10.12
}
release {
QMAKE_POST_LINK += macdeployqt CaptureStream2.app
}
}
OTHER_FILES += \
stylesheet-mac.qss \
stylesheet-win.qss \
stylesheet-ubu.qss
RESOURCES += \
stylesheet.qrc