Initial commit

This commit is contained in:
TheCherno
2025-02-26 20:23:26 +11:00
parent 30710362ed
commit 9e6f7d5e8d
10 changed files with 414 additions and 2 deletions

18
App/CMakeLists.txt Normal file
View File

@@ -0,0 +1,18 @@
# App
set(SOURCE_DIR "Source")
set(SOURCES
Source/Main.cpp
Source/Shader.h
Source/Shader.cpp
Source/Renderer.h
Source/Renderer.cpp
)
# Add the executable target
add_executable(App ${SOURCES})
target_link_libraries(App glfw)
target_link_libraries(App glad)
target_link_libraries(App glm)