blob: 4e0f0cc1af9855488187fcbddb5902f7c12a7104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
TEMPLATE = lib
TARGET = phononwidgets
CONFIG += qt warn_on plugin
QT += phonon
include(../plugins.pri)
build_all:!build_pass {
CONFIG -= build_all
CONFIG += release
}
# Input
SOURCES += videoplayerplugin.cpp \
videoplayertaskmenu.cpp \
seeksliderplugin.cpp \
volumesliderplugin.cpp \
phononcollection.cpp
HEADERS += videoplayerplugin.h \
videoplayertaskmenu.h \
seeksliderplugin.h \
volumesliderplugin.h
RESOURCES += phononwidgets.qrc
|