From d589a64481bb97f15704d878452083e6410bbfee Mon Sep 17 00:00:00 2001 From: "re.kovalev" Date: Mon, 14 Nov 2022 19:53:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20ti?= =?UTF-8?q?nyOBJloader?= 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 bfe7476..04cf9c6 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -7,7 +7,8 @@ "${workspaceFolder}/../dependencies/GLFW/include", "${workspaceFolder}/../dependencies/glad/include", "${workspaceFolder}/../dependencies/glm", - "${workspaceFolder}/../dependencies/stb" + "${workspaceFolder}/../dependencies/stb", + "${workspaceFolder}/../dependencies/tinyobjloader" ], "compilerPath": "C:/MinGW/bin/g++.exe", "cStandard": "c11", diff --git a/Makefile b/Makefile index 50acdfb..c270acc 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,7 @@ CFLAGS += -I../dependencies/GLFW/include CFLAGS += -I../dependencies/glad/include CFLAGS += -I../dependencies/glm CFLAGS += -I../dependencies/stb +CFLAGS += -I../dependencies/tinyobjloader # Опции линкера LDFLAGS += --std=c++11