This commit is contained in:
Lukian 2024-11-08 09:00:52 +01:00
commit 675bae3ad6
38 changed files with 4547 additions and 0 deletions

6
CMakeLists.txt Normal file
View file

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.31)
file(GLOB_RECURSE MY_SOURCES CONFIGURE_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
project("game_engine")
add_executable("game_engine" "src/main.cpp" "${MY_SOURCES}")