From 6dd378d19813ea9b9a9d4c8a4130b398d9e1c3af Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 24 Apr 2019 07:46:42 +1000 Subject: [PATCH] build: move tools to a directory --- CMakeLists.txt | 4 ++-- emory.cpp => tools/analyse.cpp | 0 emory-compare.cpp => tools/compare.cpp | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename emory.cpp => tools/analyse.cpp (100%) rename emory-compare.cpp => tools/compare.cpp (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6125b98..5d3abdc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ add_subdirectory(cruft/crypto) ############################################################################### -foreach (t emory emory-compare) - add_executable ("${t}" "${t}.cpp") +foreach (t analyse compare) + add_executable ("${t}" "tools/${t}.cpp") target_link_libraries("${t}" cruft-crypto cruft-util) endforeach() diff --git a/emory.cpp b/tools/analyse.cpp similarity index 100% rename from emory.cpp rename to tools/analyse.cpp diff --git a/emory-compare.cpp b/tools/compare.cpp similarity index 100% rename from emory-compare.cpp rename to tools/compare.cpp