Add draw triangle

This commit is contained in:
Jiga228
2025-09-29 21:02:18 +07:00
parent 47bb1541ef
commit 8f9dd52548
3 changed files with 135 additions and 7 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ set(GAME_NAME TestGame)
set(CMAKE_CXX_STANDARD 20)
file(GLOB_RECURSE SRC "*.cpp" "*.c" "*.h" "*.hpp" "*.res" "*.world" "*.conf")
file(GLOB_RECURSE SRC "*.cpp" "*.c" "*.h" "*.hpp" "*.res" "*.world" "*.conf" "*.frag" "*.vert")
add_executable(${GAME_NAME} ${SRC})
target_link_libraries(${GAME_NAME} PRIVATE Core)