data-aggregator
This change introduces a loose collection of scripts for analysis/aggregation of FAIL*'s collected data. It's going to be developed into a proper tool in the future. Change-Id: I63f14d87dd86b62817ec3d8089079d70f58c89c9
This commit is contained in:
committed by
Horst Schirmeier
parent
806c71580f
commit
f171fe9286
@ -7,6 +7,7 @@ option(BUILD_COMPUTE_HOPS "Build the compute hops tool?" OFF)
|
||||
option(BUILD_DUMP_HOPS "Build the hops dump tool?" OFF)
|
||||
|
||||
option(BUILD_FAULTSPACEPLOT "Build the faultspace plotting tool?" OFF)
|
||||
option(BUILD_DATA_AGGREGATOR "Build the data aggregation tools?" OFF)
|
||||
|
||||
### Setup search paths for headers ##
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR}/../src/core)
|
||||
@ -39,3 +40,7 @@ endif(BUILD_DUMP_HOPS)
|
||||
if(BUILD_FAULTSPACEPLOT)
|
||||
add_subdirectory(analysis/faultspaceplot)
|
||||
endif(BUILD_FAULTSPACEPLOT)
|
||||
|
||||
if(BUILD_DATA_AGGREGATOR)
|
||||
add_subdirectory(analysis/data-aggregator)
|
||||
endif(BUILD_DATA_AGGREGATOR)
|
||||
|
||||
Reference in New Issue
Block a user