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

0001 add_definitions(-DTRANSLATION_DOMAIN=\"kdevprojectfilter\")
0002 ##############################
0003 # PLUGIN #####################
0004 ##############################
0005 
0006 set( projectfilter_SRCS
0007     projectfilterprovider.cpp
0008     projectfilter.cpp
0009     filter.cpp
0010     projectfilterconfigpage.cpp
0011     filter.cpp
0012     filtermodel.cpp
0013     comboboxdelegate.cpp
0014 )
0015 
0016 declare_qt_logging_category(projectfilter_SRCS
0017     TYPE PLUGIN
0018     IDENTIFIER PLUGIN_PROJECTFILTER
0019     CATEGORY_BASENAME "projectfilter"
0020 )
0021 ki18n_wrap_ui(projectfilter_SRCS projectfiltersettings.ui)
0022 kconfig_add_kcfg_files(projectfilter_SRCS projectfiltersettings.kcfgc)
0023 
0024 kdevplatform_add_plugin(kdevprojectfilter SOURCES ${projectfilter_SRCS})
0025 
0026 target_link_libraries(kdevprojectfilter
0027     KDev::Project
0028     KDev::Util
0029     KDev::Interfaces
0030 )
0031 
0032 if(BUILD_TESTING)
0033     add_subdirectory(tests)
0034 endif()