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

0001 add_definitions(-DTRANSLATION_DOMAIN=\"kdevcompileanalyzercommon\")
0002 
0003 set(KDevCompileAnalyzerCommon_SRCS
0004     compileanalyzejob.cpp
0005     compileanalyzeproblemmodel.cpp
0006     compileanalyzeutils.cpp
0007     compileanalyzer.cpp
0008 )
0009 declare_qt_logging_category(KDevCompileAnalyzerCommon_SRCS
0010     TYPE PLUGIN # TODO: need type private library
0011     IDENTIFIER KDEV_COMPILEANALYZER
0012     CATEGORY_BASENAME "compileanalyzer"
0013 )
0014 
0015 kdevelop_add_private_library(KDevCompileAnalyzerCommon SOURCES ${KDevCompileAnalyzerCommon_SRCS})
0016 target_link_libraries(KDevCompileAnalyzerCommon
0017     PUBLIC
0018         KDev::OutputView
0019         KDev::Shell
0020         KDev::Project
0021         KDev::Util
0022     PRIVATE
0023 )
0024 
0025 if(BUILD_TESTING)
0026     add_subdirectory(tests)
0027 endif()