mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[HOST-TOOLS]
Add log2lines to build. svn path=/trunk/; revision=58755
This commit is contained in:
parent
18e14e7e3e
commit
17ad27cc71
3 changed files with 22 additions and 2 deletions
|
@ -11,6 +11,7 @@ add_subdirectory(cabman)
|
|||
add_subdirectory(cdmake)
|
||||
add_subdirectory(gendib)
|
||||
add_subdirectory(geninc)
|
||||
add_subdirectory(log2lines)
|
||||
add_subdirectory(mkhive)
|
||||
add_subdirectory(obj2bin)
|
||||
add_subdirectory(spec2def)
|
||||
|
|
17
reactos/tools/log2lines/CMakeLists.txt
Normal file
17
reactos/tools/log2lines/CMakeLists.txt
Normal file
|
@ -0,0 +1,17 @@
|
|||
list(APPEND SOURCE
|
||||
cache.c
|
||||
cmd.c
|
||||
help.c
|
||||
image.c
|
||||
list.c
|
||||
log2lines.c
|
||||
match.c
|
||||
options.c
|
||||
revision.c
|
||||
stat.c
|
||||
util.c)
|
||||
|
||||
include_directories(${REACTOS_SOURCE_DIR}/tools/rsym)
|
||||
|
||||
add_executable(log2lines ${SOURCE})
|
||||
target_link_libraries(log2lines rsym_common)
|
|
@ -1,7 +1,9 @@
|
|||
add_library(rsym_common rsym_common.c)
|
||||
|
||||
if(ARCH STREQUAL "i386")
|
||||
add_executable(rsym rsym_common.c rsym.c)
|
||||
add_executable(rsym rsym.c)
|
||||
elseif(ARCH STREQUAL "amd64")
|
||||
add_executable(rsym rsym_common.c rsym64.c)
|
||||
add_executable(rsym rsym64.c)
|
||||
endif()
|
||||
target_link_libraries(rsym rsym_common)
|
||||
add_executable(raddr2line rsym_common.c raddr2line.c)
|
||||
|
|
Loading…
Reference in a new issue