From bbca7d0a0f5f4a220fc80d02bc8a482d5b766b2a Mon Sep 17 00:00:00 2001 From: Chewing_Bever Date: Thu, 5 Nov 2020 14:00:55 +0100 Subject: [PATCH] Moved everything to src dir (#1) --- arg.h => src/arg.h | 0 config.def.h => src/config.def.h | 0 config.h => src/config.h | 0 src/st/CMakeLists.txt | 0 {st => src/st}/st.c | 0 {st => src/st}/st.h | 0 win.h => src/win.h | 0 x.c => src/x.c | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename arg.h => src/arg.h (100%) rename config.def.h => src/config.def.h (100%) rename config.h => src/config.h (100%) create mode 100644 src/st/CMakeLists.txt rename {st => src/st}/st.c (100%) rename {st => src/st}/st.h (100%) rename win.h => src/win.h (100%) rename x.c => src/x.c (100%) diff --git a/arg.h b/src/arg.h similarity index 100% rename from arg.h rename to src/arg.h diff --git a/config.def.h b/src/config.def.h similarity index 100% rename from config.def.h rename to src/config.def.h diff --git a/config.h b/src/config.h similarity index 100% rename from config.h rename to src/config.h diff --git a/src/st/CMakeLists.txt b/src/st/CMakeLists.txt new file mode 100644 index 0000000..e69de29 diff --git a/st/st.c b/src/st/st.c similarity index 100% rename from st/st.c rename to src/st/st.c diff --git a/st/st.h b/src/st/st.h similarity index 100% rename from st/st.h rename to src/st/st.h diff --git a/win.h b/src/win.h similarity index 100% rename from win.h rename to src/win.h diff --git a/x.c b/src/x.c similarity index 100% rename from x.c rename to src/x.c