Warning, /utilities/kdebugsettings/src/apps/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0002 # SPDX-License-Identifier: BSD-3-Clause
0003 add_executable(kdebugsettings main.cpp)
0004 if (COMPILE_WITH_UNITY_CMAKE_SUPPORT)
0005     set_target_properties(kdebugsettings PROPERTIES UNITY_BUILD ON)
0006 endif()
0007 
0008 target_link_libraries(kdebugsettings
0009     Qt::Widgets
0010     KF6::I18n
0011     KF6::DBusAddons
0012     libkdebugsettings
0013 )
0014 
0015 install(TARGETS kdebugsettings  ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )