summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibDebug/CMakeLists.txt
blob: e03bc1f62593fe5d20d673e340dcd7f408cfc792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
set(SOURCES
    DebugInfo.cpp
    DebugSession.cpp
    Dwarf/AbbreviationsMap.cpp
    Dwarf/AddressRanges.cpp
    Dwarf/CompilationUnit.cpp
    Dwarf/DIE.cpp
    Dwarf/DwarfInfo.cpp
    Dwarf/Expression.cpp
    Dwarf/LineProgram.cpp
    StackFrameUtils.cpp
)

serenity_lib(LibDebug debug)
target_link_libraries(LibDebug LibC LibRegex)