forked from daigorou/CaptureStream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCaptureStream.pro
More file actions
executable file
·42 lines (40 loc) · 954 Bytes
/
CaptureStream.pro
File metadata and controls
executable file
·42 lines (40 loc) · 954 Bytes
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
# -------------------------------------------------
# Project created by QtCreator 2009-04-20T14:05:07
# -------------------------------------------------
QT += network \
xml \
xmlpatterns \
script
TARGET = CaptureStream
TEMPLATE = app
SOURCES += main.cpp \
mainwindow.cpp \
downloadthread.cpp \
downloadmanager.cpp \
customizedialog.cpp \
messagewindow.cpp \
scrambledialog.cpp \
utility.cpp \
mp3.cpp \
urldownloader.cpp
HEADERS += mainwindow.h \
downloadthread.h \
downloadmanager.h \
customizedialog.h \
messagewindow.h \
scrambledialog.h \
utility.h \
mp3.h \
urldownloader.h
FORMS += mainwindow.ui \
customizedialog.ui \
messagewindow.ui \
scrambledialog.ui
macx {
CONFIG += x86 ppc #x86_64
QMAKE_CFLAGS_RELEASE += -fvisibility=hidden
QMAKE_CXXFLAGS_RELEASE += -fvisibility=hidden
release {
QMAKE_POST_LINK += /usr/bin/macdeployqt CaptureStream.app
}
}