mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 04:03:56 +00:00

It's purpose was to create x64 unwind information from DWARF debug info, but it was never fully working and is pointless now anyway, because x64 GCC does this itself properly.
10 lines
375 B
CMake
10 lines
375 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/tools)
|
|
add_library(rsym_common STATIC rsym_common.c)
|
|
target_link_libraries(rsym_common PRIVATE host_includes)
|
|
|
|
add_host_tool(rsym rsym.c)
|
|
|
|
target_link_libraries(rsym PRIVATE host_includes rsym_common dbghelphost unicode)
|
|
add_host_tool(raddr2line raddr2line.c)
|
|
target_link_libraries(raddr2line PRIVATE host_includes rsym_common)
|