-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCaptureStream2.pro
74 lines (64 loc) · 1.45 KB
/
CaptureStream2.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
# -------------------------------------------------
# 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
SOURCES += main.cpp \
mainwindow.cpp \
downloadthread.cpp \
downloadmanager.cpp \
customizedialog.cpp \
messagewindow.cpp \
scrambledialog.cpp \
settingsdialog.cpp \
utility.cpp \
urldownloader.cpp
HEADERS += mainwindow.h \
downloadthread.h \
downloadmanager.h \
customizedialog.h \
messagewindow.h \
scrambledialog.h \
settingsdialog.h \
utility.h \
urldownloader.h \
qt4qt5.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