From: Armaan Bhojwani <3fb650a9-b47e-4604-a282-1dd91953b2ee@anonaddy.me> Date: Mon, 26 Oct 2020 20:44:44 +0000 (-0400) Subject: continuing to de-task X-Git-Url: https://git.armaanb.net/?p=gen-shell.git;a=commitdiff_plain;h=de5d7bce3a583ccf93ca2ac9d237398d4cc9d6f6 continuing to de-task --- diff --git a/.gitignore b/.gitignore index 33d0b7a..968076e 100644 --- a/.gitignore +++ b/.gitignore @@ -46,6 +46,8 @@ CTestTestfile.cmake _deps CPackConfig.cmake CPackSourceConfig.cmake +commit.h +commit.h.in ### CMake Patch ### # External projects diff --git a/commit.h b/commit.h deleted file mode 100644 index e4651c6..0000000 --- a/commit.h +++ /dev/null @@ -1,4 +0,0 @@ -/* commit.h.in. Creates commit.h during a cmake run */ - -/* git information */ -#define COMMIT "889d7af" diff --git a/commit.h.in b/commit.h.in deleted file mode 100644 index 3a6fe82..0000000 --- a/commit.h.in +++ /dev/null @@ -1,4 +0,0 @@ -/* commit.h.in. Creates commit.h during a cmake run */ - -/* git information */ -#define COMMIT "${COMMIT}" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 188b46b..f6c2c09 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -24,10 +24,10 @@ set (libshared_SRCS libshared/src/Color.cpp libshared/src/Color.h add_library (tasksh STATIC ${tasksh_SRCS}) add_library (libshared STATIC ${libshared_SRCS}) -add_executable (tasksh_executable main.cpp) +add_executable (gen-sh_executable main.cpp) -target_link_libraries (tasksh_executable tasksh libshared ${GEN-SHELL_LIBRARIES}) +target_link_libraries (gen-sh_executable tasksh libshared ${GEN-SHELL_LIBRARIES}) -set_property (TARGET tasksh_executable PROPERTY OUTPUT_NAME "gen-shell") +set_property (TARGET gen-sh_executable PROPERTY OUTPUT_NAME "gen-shell") -install (TARGETS tasksh_executable DESTINATION ${TASKSH_BINDIR}) +install (TARGETS gen-sh_executable DESTINATION ${TASKSH_BINDIR}) diff --git a/src/liblibshared.a b/src/liblibshared.a deleted file mode 100644 index 39ece94..0000000 Binary files a/src/liblibshared.a and /dev/null differ diff --git a/src/libtasksh.a b/src/libtasksh.a deleted file mode 100644 index 9162ae6..0000000 Binary files a/src/libtasksh.a and /dev/null differ