-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
45915c2
commit 6dbe007
Showing
9 changed files
with
23 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
include_directories(${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/..) | ||
|
||
add_library(FacesPlugin SHARED FacesPlugin.cpp FacesPlugin.h) | ||
ecm_add_qml_module(FacesPlugin URI "org.kde.ksysguard.faces" VERSION 1.0) | ||
|
||
target_link_libraries(FacesPlugin Qt::Qml KSysGuard::Sensors KSysGuard::SensorFaces KF6::Package KF6::ConfigCore KF6::ConfigGui KF6::ConfigQml) | ||
target_sources(FacesPlugin PRIVATE FacesPlugin.cpp FacesPlugin.h) | ||
|
||
install(TARGETS FacesPlugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/ksysguard/faces) | ||
install(FILES | ||
qmldir | ||
ecm_target_qml_sources(FacesPlugin SOURCES | ||
ExtendedLegend.qml | ||
SensorFace.qml | ||
SensorRangeSpinBox.qml | ||
Choices.qml | ||
CompactSensorFace.qml | ||
DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/ksysguard/faces | ||
) | ||
|
||
target_link_libraries(FacesPlugin PRIVATE Qt::Qml KSysGuard::Sensors KSysGuard::SensorFaces KF6::Package KF6::ConfigCore KF6::ConfigGui KF6::ConfigQml) | ||
|
||
ecm_finalize_qml_module(FacesPlugin) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
include_directories(${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/..) | ||
|
||
add_library(FormatterPlugin SHARED FormatterPlugin.cpp FormatterPlugin.h FormatterWrapper.cpp FormatterWrapper.h) | ||
ecm_add_qml_module(FormatterPlugin URI "org.kde.ksysguard.formatter" VERSION 1.0) | ||
|
||
target_link_libraries(FormatterPlugin Qt::Qml KSysGuard::Formatter) | ||
target_sources(FormatterPlugin PRIVATE FormatterPlugin.cpp FormatterPlugin.h FormatterWrapper.cpp FormatterWrapper.h) | ||
|
||
install(TARGETS FormatterPlugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/ksysguard/formatter) | ||
install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/ksysguard/formatter) | ||
target_link_libraries(FormatterPlugin PRIVATE Qt::Qml KSysGuard::Formatter) | ||
|
||
ecm_finalize_qml_module(FormatterPlugin) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
include_directories(${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/..) | ||
|
||
add_library(ProcessPlugin SHARED ProcessPlugin.cpp ProcessPlugin.h ProcessEnums.cpp ProcessEnums.h) | ||
ecm_add_qml_module(ProcessPlugin URI "org.kde.ksysguard.process" VERSION 1.0) | ||
|
||
target_link_libraries(ProcessPlugin Qt::Qml KSysGuard::ProcessCore) | ||
target_sources(ProcessPlugin PRIVATE ProcessPlugin.cpp ProcessPlugin.h ProcessEnums.cpp ProcessEnums.h) | ||
|
||
install(TARGETS ProcessPlugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/ksysguard/process) | ||
install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/ksysguard/process) | ||
target_link_libraries(ProcessPlugin PRIVATE Qt::Qml KSysGuard::ProcessCore) | ||
|
||
ecm_finalize_qml_module(ProcessPlugin) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
include_directories(${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/..) | ||
|
||
add_library(SensorsPlugin SHARED SensorsPlugin.cpp SensorsPlugin.h) | ||
ecm_add_qml_module(SensorsPlugin URI "org.kde.ksysguard.sensors" VERSION 1.0) | ||
|
||
target_link_libraries(SensorsPlugin Qt::Qml KSysGuard::Sensors) | ||
target_sources(SensorsPlugin PRIVATE SensorsPlugin.cpp SensorsPlugin.h) | ||
|
||
install(TARGETS SensorsPlugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/ksysguard/sensors) | ||
install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/ksysguard/sensors) | ||
target_link_libraries(SensorsPlugin PRIVATE Qt::Qml KSysGuard::Sensors) | ||
|
||
ecm_finalize_qml_module(SensorsPlugin) |
This file was deleted.
Oops, something went wrong.