This commit is contained in:
Pcornat 2022-01-08 20:02:04 +01:00
commit d43806895e
Signed by: Pcornat
GPG Key ID: 2F3932FF46D9ECA0
6 changed files with 29 additions and 0 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 = extern/glfw
url = https://github.com/glfw/glfw.git
[submodule "extern/spdlog"]
path = extern/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)

1
extern/glfw vendored Submodule

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

1
extern/spdlog vendored Submodule

@ -0,0 +1 @@
Subproject commit 729d7f6d8837b6693e7b378408518ea1710f80cb

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;
}