Add tool to analyze data
This commit is contained in:
11
tools/CMakeLists.txt
Normal file
11
tools/CMakeLists.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(tools C)
|
||||
|
||||
set(CMAKE_C_STANDARD 99)
|
||||
set(CMAKE_C_FLAGS "-g -Wall -fopenmp")
|
||||
|
||||
include_directories(include)
|
||||
|
||||
add_executable(strip correlation/strip/main.c)
|
||||
add_executable(analyze correlation/analyze/main.c)
|
||||
target_link_libraries(analyze host_crypto mpi m)
|
||||
Reference in New Issue
Block a user