Добавил GLM

This commit is contained in:
parent bd6e8200d5
commit 16c8de749f
2 changed files with 3 additions and 1 deletions

View File

@ -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",

View File

@ -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