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

0001 kate_add_plugin(katefilebrowserplugin)
0002 target_compile_definitions(katefilebrowserplugin PRIVATE TRANSLATION_DOMAIN="katefilebrowserplugin")
0003 
0004 target_link_libraries(
0005   katefilebrowserplugin 
0006   PRIVATE
0007     kateprivate
0008     KF6::I18n
0009     KF6::TextEditor 
0010     KF6::KIOFileWidgets
0011     KF6::Bookmarks
0012     KF6::BookmarksWidgets
0013 )
0014 
0015 target_sources(
0016   katefilebrowserplugin
0017   PRIVATE
0018     katefilebrowserplugin.cpp
0019     katefilebrowserconfig.cpp
0020     katefilebrowser.cpp
0021     katebookmarkhandler.cpp
0022     katefilebrowseropenwithmenu.cpp
0023 )
0024 
0025 if (BUILD_PCH)
0026     target_precompile_headers(katefilebrowserplugin REUSE_FROM katepch)
0027 endif()