quarkai/plugins/systemmonitor/systemmonitor.pro

116 lines
2.7 KiB
Prolog
Raw Permalink Normal View History

2018-01-04 09:50:32 +08:00
#-------------------------------------------------
#
# Project created by QtCreator 2015-01-26T09:16:38
#
#-------------------------------------------------
2018-01-17 11:45:16 +08:00
QT += core
2018-01-04 09:50:32 +08:00
isEqual(QT_MAJOR_VERSION, 5) {
2018-01-17 11:45:16 +08:00
QT += widgets gui svg
2018-01-04 09:50:32 +08:00
}
TARGET = systemmonitor
TEMPLATE = lib
DESTDIR = $$_PRO_FILE_PWD_/../
CONFIG += plugin c++11 link_pkgconfig
PKGCONFIG += libgtop-2.0 libsystemd
2018-01-26 18:20:43 +08:00
#gio-2.0
#LIBS +=-lgio-2.0 -lglib-2.0
2018-01-04 09:50:32 +08:00
target.path = $${PREFIX}/lib/kylin-assistant/plugins/
INSTALLS += target
unix {
UI_DIR = .ui
MOC_DIR = .moc
OBJECTS_DIR = .obj
}
HEADERS += \
systemmonitor.h \
../../component/plugininterface.h \
processmanager.h \
processdialog.h \
processlistwidget.h \
processlistitem.h \
processworker.h \
util.h \
../../component/utils.h \
2018-01-22 08:39:19 +08:00
../widgets/mydialog.h \
../widgets/mytristatebutton.h \
../widgets/myunderlinebutton.h \
../widgets/myhoverbutton.h \
2018-01-04 09:50:32 +08:00
propertiesdialog.h \
processcategory.h \
processdata.h \
2018-01-22 08:39:19 +08:00
../widgets/myactiongroup.h \
../widgets/myactiongroupitem.h \
../widgets/myaction.h \
monitortitlewidget.h \
2018-01-04 09:50:32 +08:00
resourcesdialog.h \
filesystemdialog.h \
filesystemworker.h \
filesystemdata.h \
2018-01-22 08:39:19 +08:00
../widgets/mysearchedit.h \
2018-01-25 18:58:26 +08:00
networkwidget.h \
2018-01-17 11:45:16 +08:00
networkflow.h \
2018-01-25 18:58:26 +08:00
cpuratewidget.h \
2018-01-17 11:45:16 +08:00
cpuballwidget.h \
2018-01-22 09:24:30 +08:00
smoothcurvegenerator.h \
memorywidget.h \
2018-01-25 18:58:26 +08:00
memorycircle.h \
networkindicator.h \
resourcesindicator.h \
resourcescategory.h \
filesystemlistwidget.h \
2018-02-03 23:00:32 +08:00
filesystemlistitem.h \
2018-02-12 17:38:54 +08:00
filesystemwatcher.h \
renicedialog.h \
../../component/mytitlebar.h
2018-01-04 09:50:32 +08:00
SOURCES += \
systemmonitor.cpp \
processmanager.cpp \
processdialog.cpp \
processlistwidget.cpp \
processlistitem.cpp \
processworker.cpp \
util.cpp \
2018-01-22 08:39:19 +08:00
../widgets/mydialog.cpp \
../widgets/mytristatebutton.cpp \
../widgets/myunderlinebutton.cpp \
../widgets/myhoverbutton.cpp \
2018-01-04 09:50:32 +08:00
propertiesdialog.cpp \
processcategory.cpp \
2018-01-22 08:39:19 +08:00
../widgets/myactiongroup.cpp \
../widgets/myactiongroupitem.cpp \
../widgets/myaction.cpp \
monitortitlewidget.cpp \
2018-01-04 09:50:32 +08:00
resourcesdialog.cpp \
filesystemdialog.cpp \
filesystemworker.cpp \
filesystemdata.cpp \
2018-01-22 08:39:19 +08:00
../widgets/mysearchedit.cpp \
2018-01-25 18:58:26 +08:00
networkwidget.cpp \
2018-01-17 11:45:16 +08:00
networkflow.cpp \
2018-01-25 18:58:26 +08:00
cpuratewidget.cpp \
2018-01-17 11:45:16 +08:00
cpuballwidget.cpp \
2018-01-22 09:24:30 +08:00
smoothcurvegenerator.cpp \
memorywidget.cpp \
2018-01-25 18:58:26 +08:00
memorycircle.cpp \
networkindicator.cpp \
resourcesindicator.cpp \
resourcescategory.cpp \
filesystemlistwidget.cpp \
2018-02-03 23:00:32 +08:00
filesystemlistitem.cpp \
2018-02-12 17:38:54 +08:00
filesystemwatcher.cpp \
renicedialog.cpp \
../../component/mytitlebar.cpp
2018-01-04 09:50:32 +08:00
OTHER_FILES += \
systemmonitor.json
RESOURCES += \
2018-01-19 11:42:45 +08:00
../../src/img.qrc