Warning, /graphics/kodaskanna/src/purposeplugin/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2022 Friedrich W. H. Kossebau <kossebau@kde.org>
0002 #
0003 # SPDX-License-Identifier: BSD-3-Clause
0004 
0005 add_definitions(-DTRANSLATION_DOMAIN=\"kodaskanna\")
0006 
0007 add_library(purposeplugin MODULE)
0008 set_target_properties(purposeplugin PROPERTIES
0009     OUTPUT_NAME kodaskannaplugin
0010 )
0011 
0012 target_sources(purposeplugin PRIVATE
0013     plugin.cpp
0014     launchjob.cpp
0015 )
0016 
0017 target_link_libraries(purposeplugin
0018     KF5::Purpose
0019     KF5::KIOGui
0020     KF5::I18n
0021 )
0022 
0023 install(TARGETS purposeplugin DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf5/purpose)