Compare commits

..

No commits in common. "f7661e32109d58145d9969a781640e219529b93c" and "11f94defad88490e1088baf52f7ab96cd6c5c314" have entirely different histories.

7 changed files with 2 additions and 35 deletions

4
.gitignore vendored
View file

@ -1,4 +0,0 @@
cmake-*
build/
.idea/
!.idea/cmake.xml

6
.gitmodules vendored
View file

@ -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

View file

@ -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)

View file

@ -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

1
external/glfw vendored

@ -1 +0,0 @@
Subproject commit 7d5a16ce714f0b5f4efa3262de22e4d948851525

1
external/spdlog vendored

@ -1 +0,0 @@
Subproject commit eb3220622e73a4889eee355ffa37972b3cac3df5

View file

@ -1,6 +0,0 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return EXIT_SUCCESS;
}