Init
This commit is contained in:
commit
d43806895e
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 = 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
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
extern/glfw
vendored
Submodule
1
extern/glfw
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit df8d7bc892937a8b0f7c604c92a9f64f383cf48c
|
1
extern/spdlog
vendored
Submodule
1
extern/spdlog
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 729d7f6d8837b6693e7b378408518ea1710f80cb
|
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…
Reference in New Issue
Block a user