diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 50e256b..3555d44 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -5,7 +5,8 @@ "includePath": [ "${workspaceFolder}/include", "${workspaceFolder}/../dependencies/GLFW/include", - "${workspaceFolder}/../dependencies/glad/include" + "${workspaceFolder}/../dependencies/glad/include", + "${workspaceFolder}/../dependencies/glm" ], "compilerPath": "C:/MinGW/bin/g++.exe", "cStandard": "c11", diff --git a/Makefile b/Makefile index 5864486..b146587 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,7 @@ CFLAGS += -c CFLAGS += -I./include CFLAGS += -I../dependencies/GLFW/include CFLAGS += -I../dependencies/glad/include +CFLAGS += -I../dependencies/glm # Опции линкера LDFLAGS += --std=c++11