diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 3555d44..bfe7476 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -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", diff --git a/Makefile b/Makefile index b146587..50acdfb 100644 --- a/Makefile +++ b/Makefile @@ -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