mirror of https://gitee.com/openkylin/quarkai.git
100 lines
2.2 KiB
Prolog
100 lines
2.2 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2015-01-26T09:16:38
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core
|
|
|
|
isEqual(QT_MAJOR_VERSION, 5) {
|
|
QT += widgets gui svg
|
|
}
|
|
|
|
TARGET = systemmonitor
|
|
TEMPLATE = lib
|
|
DESTDIR = $$_PRO_FILE_PWD_/../
|
|
CONFIG += plugin c++11 link_pkgconfig
|
|
PKGCONFIG += libgtop-2.0 libsystemd
|
|
|
|
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 \
|
|
../widgets/mydialog.h \
|
|
../widgets/myimagebutton.h \
|
|
propertiesdialog.h \
|
|
processcategory.h \
|
|
processdata.h \
|
|
../widgets/myactiongroup.h \
|
|
../widgets/myactiongroupitem.h \
|
|
../widgets/myaction.h \
|
|
monitortitlewidget.h \
|
|
toolbar.h \
|
|
../widgets/mytipimagebutton.h \
|
|
resourcesdialog.h \
|
|
filesystemdialog.h \
|
|
diskitemlist.h \
|
|
diskitem.h \
|
|
filesystemworker.h \
|
|
diskmodel.h \
|
|
diskinfo.h \
|
|
../widgets/mysearchedit.h \
|
|
networkflow.h \
|
|
cpuoccupancyrate.h \
|
|
cpuballwidget.h \
|
|
smoothcurvegenerator.h \
|
|
memorywidget.h
|
|
|
|
SOURCES += \
|
|
systemmonitor.cpp \
|
|
processmanager.cpp \
|
|
processdialog.cpp \
|
|
processlistwidget.cpp \
|
|
processlistitem.cpp \
|
|
processworker.cpp \
|
|
util.cpp \
|
|
../widgets/mydialog.cpp \
|
|
../widgets/myimagebutton.cpp \
|
|
propertiesdialog.cpp \
|
|
processcategory.cpp \
|
|
../widgets/myactiongroup.cpp \
|
|
../widgets/myactiongroupitem.cpp \
|
|
../widgets/myaction.cpp \
|
|
monitortitlewidget.cpp \
|
|
toolbar.cpp \
|
|
../widgets/mytipimagebutton.cpp \
|
|
resourcesdialog.cpp \
|
|
filesystemdialog.cpp \
|
|
diskitemlist.cpp \
|
|
diskitem.cpp \
|
|
filesystemworker.cpp \
|
|
diskmodel.cpp \
|
|
diskinfo.cpp \
|
|
../widgets/mysearchedit.cpp \
|
|
networkflow.cpp \
|
|
cpuoccupancyrate.cpp \
|
|
cpuballwidget.cpp \
|
|
smoothcurvegenerator.cpp \
|
|
memorywidget.cpp
|
|
|
|
OTHER_FILES += \
|
|
systemmonitor.json
|
|
|
|
RESOURCES += \
|
|
../../src/img.qrc
|