From 16c8de749f00601525303df6eb2c9d3a89e731f6 Mon Sep 17 00:00:00 2001 From: "re.kovalev" Date: Mon, 18 Jul 2022 11:40:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20GL?= =?UTF-8?q?M?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/c_cpp_properties.json | 3 ++- Makefile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) 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