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

0001 add_definitions(-DTRANSLATION_DOMAIN=\"kdevplatform\")
0002 
0003 set(KDevPlatformDebugger_LIB_SRCS
0004     interfaces/idebugsession.cpp
0005     interfaces/iframestackmodel.cpp
0006     interfaces/ibreakpointcontroller.cpp
0007     interfaces/ivariablecontroller.cpp
0008     util/treeitem.cpp
0009     util/treemodel.cpp
0010     util/treeview.cpp
0011     util/pathmappings.cpp
0012     breakpoint/breakpoint.cpp
0013     breakpoint/breakpointmodel.cpp
0014     breakpoint/breakpointwidget.cpp
0015     breakpoint/breakpointdetails.cpp
0016     variable/variablewidget.cpp
0017     variable/variablecollection.cpp
0018     variable/variabletooltip.cpp
0019     variable/variablesortmodel.cpp
0020     framestack/framestackmodel.cpp
0021     framestack/framestackwidget.cpp
0022 )
0023 declare_qt_logging_category(KDevPlatformDebugger_LIB_SRCS
0024     TYPE LIBRARY
0025     CATEGORY_BASENAME "debugger"
0026 )
0027 kdevplatform_add_library(KDevPlatformDebugger SOURCES ${KDevPlatformDebugger_LIB_SRCS})
0028 target_link_libraries(KDevPlatformDebugger
0029 PUBLIC
0030     KDev::Interfaces
0031     KDev::Util
0032 PRIVATE
0033     KDev::Sublime
0034     KF5::Notifications
0035     KF5::TextEditor
0036 )
0037 
0038 install(FILES
0039     interfaces/idebugsession.h
0040     interfaces/ibreakpointcontroller.h
0041     interfaces/ivariablecontroller.h
0042     interfaces/iframestackmodel.h
0043     DESTINATION ${KDE_INSTALL_INCLUDEDIR}/kdevplatform/debugger/interfaces COMPONENT Devel
0044 )
0045 install(FILES
0046     util/treemodel.h
0047     util/treeitem.h
0048     util/treeview.h
0049     util/pathmappings.h
0050     DESTINATION ${KDE_INSTALL_INCLUDEDIR}/kdevplatform/debugger/util COMPONENT Devel
0051 )
0052 install(FILES
0053     breakpoint/breakpointwidget.h
0054     breakpoint/breakpointdetails.h
0055     breakpoint/breakpoint.h
0056     breakpoint/breakpointmodel.h
0057     DESTINATION ${KDE_INSTALL_INCLUDEDIR}/kdevplatform/debugger/breakpoint COMPONENT Devel
0058 )
0059 install(FILES
0060     variable/variablecollection.h
0061     DESTINATION ${KDE_INSTALL_INCLUDEDIR}/kdevplatform/debugger/variable COMPONENT Devel
0062 )
0063 install(FILES
0064     framestack/framestackmodel.h
0065     DESTINATION ${KDE_INSTALL_INCLUDEDIR}/kdevplatform/debugger/framestack COMPONENT Devel
0066 )
0067 
0068 if(BUILD_TESTING)
0069     add_subdirectory(tests)
0070 endif()