Warning, /utilities/kate/addons/close-except-like/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 kate_add_plugin(katecloseexceptplugin)
0002 target_compile_definitions(katecloseexceptplugin PRIVATE TRANSLATION_DOMAIN="katecloseexceptplugin")
0003 
0004 target_link_libraries(
0005   katecloseexceptplugin
0006   PRIVATE
0007     KF6::I18n
0008     KF6::TextEditor
0009 )
0010 
0011 ki18n_wrap_ui(katecloseexceptplugin close_confirm_dialog.ui)
0012 target_sources(
0013   katecloseexceptplugin
0014   PRIVATE
0015     close_confirm_dialog.cpp
0016     close_except_plugin.cpp
0017     plugin.qrc
0018 )
0019 
0020 if (BUILD_PCH)
0021     target_precompile_headers(katecloseexceptplugin REUSE_FROM katepch)
0022 endif()