From 12b9acb9c062724168a10f35fddd0426c993bbf4 Mon Sep 17 00:00:00 2001 From: "re.kovalev" Date: Tue, 25 Oct 2022 12:05:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20st?= =?UTF-8?q?b=5Fimage?= 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 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