dump-trace: C++ implementation
About 50 times faster than the Python version. Extended trace functionality still untested. Change-Id: I9e41b0283b7d3274c5ea9eba2164f78c04c1ad42
This commit is contained in:
committed by
Horst Schirmeier
parent
001d036613
commit
92e7be0d22
@ -1,3 +1,4 @@
|
||||
option(BUILD_DUMP_TRACE "Build the trace dump tool?" OFF)
|
||||
option(BUILD_IMPORT_TRACE "Build the trace import tool?" OFF)
|
||||
option(BUILD_PRUNE_TRACE "Build the trace prune tool?" OFF)
|
||||
|
||||
@ -13,3 +14,7 @@ endif(BUILD_IMPORT_TRACE)
|
||||
if(BUILD_PRUNE_TRACE)
|
||||
add_subdirectory(prune-trace)
|
||||
endif(BUILD_PRUNE_TRACE)
|
||||
|
||||
if(BUILD_DUMP_TRACE)
|
||||
add_subdirectory(dump-trace)
|
||||
endif(BUILD_DUMP_TRACE)
|
||||
|
||||
Reference in New Issue
Block a user