Warning, /kdevelop/kdevelop/plugins/quickopen/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 add_definitions(-DTRANSLATION_DOMAIN=\"kdevquickopen\")
0002 if(BUILD_TESTING)
0003     add_subdirectory( tests )
0004 endif()
0005 
0006 set(kdevquickopen_PART_SRCS
0007     quickopenplugin.cpp
0008     quickopenmodel.cpp
0009     quickopenwidget.cpp
0010     projectfilequickopen.cpp
0011     duchainitemquickopen.cpp
0012     declarationlistquickopen.cpp
0013     projectitemquickopen.cpp
0014     documentationquickopenprovider.cpp
0015     actionsquickopenprovider.cpp
0016     expandingtree/expandingdelegate.cpp
0017     expandingtree/expandingtree.cpp
0018     expandingtree/expandingwidgetmodel.cpp
0019 )
0020 declare_qt_logging_category(kdevquickopen_PART_SRCS
0021     TYPE PLUGIN
0022     IDENTIFIER PLUGIN_QUICKOPEN
0023     CATEGORY_BASENAME "quickopen"
0024 )
0025 ki18n_wrap_ui(kdevquickopen_PART_SRCS
0026   quickopenwidget.ui
0027 )
0028 qt5_add_resources(kdevquickopen_PART_SRCS kdevquickopen.qrc)
0029 kdevplatform_add_plugin(kdevquickopen SOURCES ${kdevquickopen_PART_SRCS})
0030 target_link_libraries(kdevquickopen
0031     KDev::Language
0032     KDev::Interfaces
0033     KDev::Project
0034     KDev::Util
0035     gfx::timsort
0036     KF5::GuiAddons
0037 )