forked from m-garanin/zgui-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzgui-qt.pro
80 lines (65 loc) · 1.5 KB
/
zgui-qt.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
75
76
77
78
#-------------------------------------------------
#
# Project created by QtCreator 2013-02-28T17:30:29
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets multimedia webkitwidgets
contains(QT_CONFIG, opengl):QT += opengl
TARGET = zgui-qt
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
utils.cpp \
effectsdlg.cpp \
audiopanel.cpp \
volumewidget.cpp \
menuindicator.cpp \
menubarwidget.cpp \
startrecorddialog.cpp \
startairdialog.cpp \
scenepanel.cpp \
layerconstructdlg.cpp \
settingsmanager.cpp \
clonedwidget.cpp \
graphicsitem.cpp \
scenewidget.cpp \
layerwidget.cpp \
settingsdlg.cpp \
rectselectionwidget.cpp
HEADERS += mainwindow.h \
lib/IManager.h \
effectsdlg.h \
audiopanel.h \
volumewidget.h \
menuindicator.h \
menubarwidget.h \
startrecorddialog.h \
startairdialog.h \
scenepanel.h \
utils.h \
layerconstructdlg.h \
settingsmanager.h \
clonedwidget.h \
graphicsitem.h \
scenewidget.h \
settingsdlg.h \
layerwidget.h \
rectselectionwidget.h
FORMS += mainwindow.ui \
effectsdlg.ui \
startrecorddialog.ui \
startairdialog.ui \
menubarwidget.ui \
clonedwidget.ui \
settingsdlg.ui
INCLUDEPATH += lib/
CONFIG += link_pkgconfig
#PKGCONFIG += gstreamer-0.10
LIBS += -L$$PWD/zcore-stub
LIBS += -lzcore-stub
win32 {
LIBS += -lstrmiids
}
RESOURCES += \
icons.qrc