mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
35 lines
773 B
Prolog
35 lines
773 B
Prolog
|
|
include(../../interfaces/interfaces.pri)
|
|
|
|
QT += widgets svg dbus
|
|
TEMPLATE = lib
|
|
CONFIG += plugin c++11 link_pkgconfig
|
|
PKGCONFIG += dtkbase dtkwidget
|
|
|
|
TARGET = $$qtLibraryTarget(sound)
|
|
DESTDIR = $$_PRO_FILE_PWD_/../
|
|
DISTFILES += sound.json
|
|
|
|
HEADERS += \
|
|
soundplugin.h \
|
|
sounditem.h \
|
|
soundapplet.h \
|
|
dbus/dbusaudio.h \
|
|
dbus/dbussink.h \
|
|
componments/horizontalseparator.h \
|
|
componments/volumeslider.h
|
|
|
|
SOURCES += \
|
|
soundplugin.cpp \
|
|
sounditem.cpp \
|
|
soundapplet.cpp \
|
|
dbus/dbusaudio.cpp \
|
|
dbus/dbussink.cpp \
|
|
componments/horizontalseparator.cpp \
|
|
componments/volumeslider.cpp
|
|
|
|
target.path = $${PREFIX}/lib/dde-dock/plugins/
|
|
INSTALLS += target
|
|
|
|
RESOURCES += \
|