Compare commits

...

5 Commits

Author SHA1 Message Date
f7661e3210
Merge branch 'master' of ssh://gitea.pcornatcloud.fr:2431/Pcornat/BillySheet 2022-01-08 20:18:27 +01:00
733a4b63f3
Adding README 2022-01-08 20:17:37 +01:00
c569de5f9b
Rename directory 2022-01-08 20:09:31 +01:00
c68dc79d3d
Right version 2022-01-08 20:04:13 +01:00
d43806895e
Init 2022-01-08 20:02:04 +01:00
7 changed files with 35 additions and 2 deletions

4
.gitignore vendored Normal file
View File

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

6
.gitmodules vendored Normal file
View File

@ -0,0 +1,6 @@
[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

11
CMakeLists.txt Normal file
View File

@ -0,0 +1,11 @@
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,3 +1,7 @@
# BillySheet
# Billy sheet control
This project is about to digitally control your character sheet from the book "La Forteresse du Chaudron Noir" from Bob Lennon.
Character sheet for Billy from "La Forteresse du Chaudron Noir" from Bob Lennon
## External dependencies
All dependencies are inside the "external" directory. The followings are inside:
- GLFW: windowing
- Spdlog: logging the app.

1
external/glfw vendored Submodule

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

1
external/spdlog vendored Submodule

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

6
src/main.cpp Normal file
View File

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