From fc00d97d40ae067aebbf71a688912796310c1235 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 23 Mar 2020 13:44:37 +0100 Subject: [PATCH] move src/core/isatty to src/isatty --- CMakeLists.txt | 2 +- src/console.cpp | 2 +- src/{core => }/isatty.cpp | 0 src/{core => }/isatty.h | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename src/{core => }/isatty.cpp (100%) rename src/{core => }/isatty.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index b371bd8..882a3b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,7 +47,7 @@ endif() set (PROGRAM_EXE ${CMAKE_PROJECT_NAME}) set (PROGRAM_SOURCE - src/core/isatty.cpp + src/isatty.cpp src/cli_key_search_result.cpp src/console.cpp src/benchmark.cpp diff --git a/src/console.cpp b/src/console.cpp index 99472f3..2208856 100644 --- a/src/console.cpp +++ b/src/console.cpp @@ -22,7 +22,7 @@ * SOFTWARE. */ #include -#include "core/isatty.h" +#include "isatty.h" #include "console.h" namespace eoskeygen { namespace console { diff --git a/src/core/isatty.cpp b/src/isatty.cpp similarity index 100% rename from src/core/isatty.cpp rename to src/isatty.cpp diff --git a/src/core/isatty.h b/src/isatty.h similarity index 100% rename from src/core/isatty.h rename to src/isatty.h