diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 443f2e5..0000000 --- a/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -cmake-* -build/ -.idea/ -!.idea/cmake.xml \ No newline at end of file diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 9e87c24..0000000 --- a/.gitmodules +++ /dev/null @@ -1,6 +0,0 @@ -[submodule "extern/glfw"] - path = external/glfw - url = https://github.com/glfw/glfw.git -[submodule "extern/spdlog"] - path = external/spdlog - url = https://github.com/gabime/spdlog.git diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index cde0bea..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -cmake_minimum_required(VERSION 3.19 FATAL_ERROR) -project(BillySheet) - -add_executable(BillySheet src/main.cpp) - -set_target_properties(BillySheet PROPERTIES - CXX_STANDARD 17 - CXX_STANDARD_REQUIRED ON - CXX_EXTENSIONS OFF - INTERPROCEDURAL_OPTIMIZATION ON - UNITY_BUILD ON) diff --git a/README.md b/README.md index 48b338e..112c975 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,3 @@ -# Billy sheet control -This project is about to digitally control your character sheet from the book "La Forteresse du Chaudron Noir" from Bob Lennon. +# BillySheet -## External dependencies -All dependencies are inside the "external" directory. The followings are inside: -- GLFW: windowing -- Spdlog: logging the app. +Character sheet for Billy from "La Forteresse du Chaudron Noir" from Bob Lennon \ No newline at end of file diff --git a/external/glfw b/external/glfw deleted file mode 160000 index 7d5a16c..0000000 --- a/external/glfw +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 7d5a16ce714f0b5f4efa3262de22e4d948851525 diff --git a/external/spdlog b/external/spdlog deleted file mode 160000 index eb32206..0000000 --- a/external/spdlog +++ /dev/null @@ -1 +0,0 @@ -Subproject commit eb3220622e73a4889eee355ffa37972b3cac3df5 diff --git a/src/main.cpp b/src/main.cpp deleted file mode 100644 index ec3351e..0000000 --- a/src/main.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include - -int main() { - std::cout << "Hello, World!" << std::endl; - return EXIT_SUCCESS; -}