mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00
25 lines
446 B
Prolog
25 lines
446 B
Prolog
|
|
QT += widgets
|
|
TEMPLATE = lib
|
|
CONFIG += plugin c++11
|
|
|
|
TARGET = $$qtLibraryTarget(home_monitor)
|
|
DESTDIR = $$_PRO_FILE_PWD_
|
|
DISTFILES += home_monitor.json
|
|
|
|
HEADERS += \
|
|
homemonitorplugin.h \
|
|
informationwidget.h
|
|
|
|
SOURCES += \
|
|
homemonitorplugin.cpp \
|
|
informationwidget.cpp
|
|
|
|
isEmpty(PREFIX) {
|
|
PREFIX = /usr
|
|
}
|
|
|
|
target.path = $${PREFIX}/lib/dde-dock/plugins/
|
|
INSTALLS += target
|
|
|