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

0001 add_definitions(-DTRANSLATION_DOMAIN=\"kdevcraft\")
0002 
0003 declare_qt_logging_category(craftplugin_LOG_SRCS
0004     TYPE PLUGIN
0005     HEADER debug_craft.h
0006     IDENTIFIER CRAFT
0007     CATEGORY_BASENAME "craft"
0008 )
0009 
0010 #qt5_add_resources(craftplugin_SRCS kdevcraftplugin.qrc)
0011 kdevplatform_add_plugin(kdevcraft SOURCES craftplugin.cpp craftruntime.cpp ${craftplugin_LOG_SRCS})
0012 target_link_libraries(kdevcraft
0013     KF5::CoreAddons
0014     KDev::Interfaces
0015     KDev::Util
0016     KDev::OutputView
0017     KDev::Project
0018 )
0019 
0020 if(BUILD_TESTING)
0021     add_subdirectory(tests)
0022 endif()