added project structure

This commit is contained in:
2026-04-27 14:00:03 +02:00
parent f5b5ac4d99
commit 687ecb7f74
14 changed files with 203 additions and 167 deletions

View File

@@ -8,13 +8,17 @@ find_package(SDL3 REQUIRED)
find_package(GLEW REQUIRED)
add_executable(${PROJECT_NAME} src/main.cpp
include/VertexBuffer.hpp
include/glPipeline/VertexBuffer.hpp
include/defines.hpp
src/Shader.cpp
include/Shader.hpp
include/IndexBuffer.hpp
include/Camera.hpp
include/FPS_Camera.hpp)
include/glPipeline/IndexBuffer.hpp
include/camera/Camera.hpp
include/camera/FPS_Camera.hpp
src/camera/Camera.cpp
src/camera/FPS_Camera.cpp
src/glPipeline/IndexBuffer.cpp
src/glPipeline/VertexBuffer.cpp)
target_compile_definitions(${PROJECT_NAME} PRIVATE $<$<CONFIG:Debug>:_DEBUG>)