Compare commits
	
		
			5 commits
		
	
	
		
			
				11f94defad
			
			...
			
				f7661e3210
			
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
							
							
								
							
							
	
	
		
			
		
	
	f7661e3210 | 
						
						
							|||
| 
							
							
								
							
							
	
	
		
			
		
	
	733a4b63f3 | 
						
						
							|||
| 
							
							
								
							
							
	
	
		
			
		
	
	c569de5f9b | 
						
						
							|||
| 
							
							
								
							
							
	
	
		
			
		
	
	c68dc79d3d | 
						
						
							|||
| 
							
							
								
							
							
	
	
		
			
		
	
	d43806895e | 
						
						
							
					 7 changed files with 35 additions and 2 deletions
				
			
		
							
								
								
									
										4
									
								
								.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,4 @@
 | 
				
			||||||
 | 
					cmake-*
 | 
				
			||||||
 | 
					build/
 | 
				
			||||||
 | 
					.idea/
 | 
				
			||||||
 | 
					!.idea/cmake.xml
 | 
				
			||||||
							
								
								
									
										6
									
								
								.gitmodules
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								.gitmodules
									
										
									
									
										vendored
									
									
										Normal 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
									
								
							
							
						
						
									
										11
									
								
								CMakeLists.txt
									
										
									
									
									
										Normal 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)
 | 
				
			||||||
| 
						 | 
					@ -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
									
								
							
							
						
						
									
										1
									
								
								external/glfw
									
										
									
									
										vendored
									
									
										Submodule
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					Subproject commit 7d5a16ce714f0b5f4efa3262de22e4d948851525
 | 
				
			||||||
							
								
								
									
										1
									
								
								external/spdlog
									
										
									
									
										vendored
									
									
										Submodule
									
								
							
							
						
						
									
										1
									
								
								external/spdlog
									
										
									
									
										vendored
									
									
										Submodule
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					Subproject commit eb3220622e73a4889eee355ffa37972b3cac3df5
 | 
				
			||||||
							
								
								
									
										6
									
								
								src/main.cpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								src/main.cpp
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,6 @@
 | 
				
			||||||
 | 
					#include <iostream>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					int main() {
 | 
				
			||||||
 | 
						std::cout << "Hello, World!" << std::endl;
 | 
				
			||||||
 | 
						return EXIT_SUCCESS;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue