Warning, /plasma/ksystemstats/plugins/disks/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-License-Identifier: BSD-2-Clause
0002 # SPDX-FileCopyrightText: 2020 David Redondo <kde@david-redondo.de>
0003 # SPDX-FileCopyrightText: 2021 Arjen Hiemstra <ahiemstra@heimr.nl>
0004 
0005 add_library(ksystemstats_plugin_disk MODULE  disks.cpp)
0006 target_link_libraries(ksystemstats_plugin_disk Qt::Core KF5::CoreAddons KF5::I18n KF5::KIOCore KF5::Solid KSysGuard::SystemStats)
0007 
0008 if (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
0009     target_link_libraries(ksystemstats_plugin_disk geom devstat)
0010 endif()
0011 
0012 install(TARGETS ksystemstats_plugin_disk DESTINATION ${KSYSTEMSTATS_PLUGIN_INSTALL_DIR})