Warning, /utilities/kate/addons/filetree/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 kate_add_plugin(katefiletreeplugin)
0002 
0003 target_compile_definitions(katefiletreeplugin PRIVATE TRANSLATION_DOMAIN="katefiletree")
0004 
0005 target_link_libraries(
0006   katefiletreeplugin
0007   PUBLIC
0008     kateprivate
0009     KF6::I18n
0010     KF6::TextEditor
0011     KF6::GuiAddons
0012 )
0013 
0014 target_sources(
0015   katefiletreeplugin
0016   PRIVATE
0017     katefiletree.cpp
0018     katefiletreeconfigpage.cpp
0019     katefiletreemodel.cpp
0020     katefiletreeplugin.cpp
0021     katefiletreepluginsettings.cpp
0022     katefiletreeproxymodel.cpp
0023     plugin.qrc
0024 )
0025 
0026 if (BUILD_PCH)
0027     target_precompile_headers(katefiletreeplugin REUSE_FROM katepch)
0028 endif()
0029 
0030 if(BUILD_TESTING)
0031   add_subdirectory(autotests)
0032 endif()