Добавил stb_image

This commit is contained in:
parent 580ebd83fd
commit 12b9acb9c0
2 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,8 @@
"${workspaceFolder}/include",
"${workspaceFolder}/../dependencies/GLFW/include",
"${workspaceFolder}/../dependencies/glad/include",
"${workspaceFolder}/../dependencies/glm"
"${workspaceFolder}/../dependencies/glm",
"${workspaceFolder}/../dependencies/stb"
],
"compilerPath": "C:/MinGW/bin/g++.exe",
"cStandard": "c11",

View File

@ -24,6 +24,7 @@ CFLAGS += -I./include
CFLAGS += -I../dependencies/GLFW/include
CFLAGS += -I../dependencies/glad/include
CFLAGS += -I../dependencies/glm
CFLAGS += -I../dependencies/stb
# Опции линкера
LDFLAGS += --std=c++11