Warning, /kdevelop/kdev-python/debugger/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 set(kdevpdb_PART_SRCS
0002     breakpointcontroller.cpp
0003     variable.cpp
0004     variablecontroller.cpp
0005     pdbframestackmodel.cpp
0006     pdblauncher.cpp
0007     debugjob.cpp
0008     debugsession.cpp
0009     pdbdebuggerplugin.cpp
0010 )
0011 ecm_qt_declare_logging_category(kdevpdb_PART_SRCS
0012     HEADER debuggerdebug.h
0013     IDENTIFIER KDEV_PYTHON_DEBUGGER
0014     CATEGORY_NAME "kdevelop.plugins.python.debugger"
0015     DESCRIPTION "KDevelop plugin: Python language support - debugger"
0016     EXPORT KDEVPYTHON
0017 )
0018 
0019 kdevplatform_add_plugin(kdevpdb JSON kdevpdb.json SOURCES ${kdevpdb_PART_SRCS})
0020 
0021 generate_export_header(kdevpdb EXPORT_MACRO_NAME KDEVPYTHONDEBUG_EXPORT)
0022 
0023 target_link_libraries(kdevpdb
0024     kdevpythonparser
0025     KDev::Interfaces
0026     KDev::Language
0027     KDev::Debugger
0028     KDev::OutputView
0029     KDev::Project    
0030     KDev::Util
0031     KF5::TextEditor
0032 )
0033 
0034 install(FILES __kdevpython_debugger_utils.py DESTINATION ${KDE_INSTALL_DATADIR}/kdevpythonsupport/debugger)
0035 install(FILES kdevpdb.py DESTINATION ${KDE_INSTALL_DATADIR}/kdevpythonsupport/debugger)