Добавил tinyOBJloader

This commit is contained in:
parent 635422c699
commit 9c387cd701
3 changed files with 4 additions and 2 deletions

View File

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

View File

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