tools: added compute-hops and dump-hops tools
As these tools work closely together with fail components, its easiest, to build them in this context. As these tools don't really matter for fail use, they might never be pushed to the master branch. Change-Id: I8c8bd80376d0475f08a531a995d829e85032371b
This commit is contained in:
@ -3,6 +3,8 @@ option(BUILD_IMPORT_TRACE "Build the trace import tool?" OFF)
|
||||
option(BUILD_PRUNE_TRACE "Build the trace prune tool?" OFF)
|
||||
option(BUILD_CONVERT_TRACE "Build the trace converter tool?" OFF)
|
||||
|
||||
option(BUILD_COMPUTE_HOPS "Build the compute hops tool?" OFF)
|
||||
option(BUILD_DUMP_HOPS "Build the hops dump tool?" OFF)
|
||||
|
||||
### Setup search paths for headers ##
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR}/../src/core)
|
||||
@ -23,3 +25,11 @@ endif(BUILD_DUMP_TRACE)
|
||||
if(BUILD_CONVERT_TRACE)
|
||||
add_subdirectory(convert-trace)
|
||||
endif(BUILD_CONVERT_TRACE)
|
||||
|
||||
if(BUILD_COMPUTE_HOPS)
|
||||
add_subdirectory(compute-hops)
|
||||
endif(BUILD_COMPUTE_HOPS)
|
||||
|
||||
if(BUILD_DUMP_HOPS)
|
||||
add_subdirectory(dump-hops)
|
||||
endif(BUILD_DUMP_HOPS)
|
||||
|
||||
Reference in New Issue
Block a user