Добавил GLM

This commit is contained in:
Ковалев Роман Евгеньевич 2022-07-18 11:40:45 +03:00 committed by Roman
parent 1c35811cec
commit 90c55f6264
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