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

0001 add_subdirectory(p4clientstub)
0002 declare_qt_logging_category(kdevperforce_LOG_PART_SRCS
0003     TYPE PLUGIN
0004     IDENTIFIER PLUGIN_PERFORCE
0005     CATEGORY_BASENAME "perforce"
0006 )
0007 set(kdevperforce_UIS
0008     ui/perforceimportmetadatawidget.ui
0009 )
0010 set(kdevperforce_PART_SRCS
0011     ui/perforceimportmetadatawidget.cpp
0012     perforceplugin.cpp
0013     perforcepluginmetadata.cpp
0014     ${kdevperforce_LOG_PART_SRCS}
0015 )
0016 ki18n_wrap_ui(kdevperforce_PART_SRCS ${kdevperforce_UIS})
0017 kdevplatform_add_plugin(kdevperforce SOURCES ${kdevperforce_PART_SRCS})
0018 
0019 target_link_libraries(kdevperforce
0020    KDev::Interfaces
0021    KDev::Vcs
0022 )
0023 
0024 if(BUILD_TESTING)
0025     add_subdirectory(tests)
0026 endif()