Добавил tinyglTF

This commit is contained in:
Ковалев Роман Евгеньевич 2023-07-11 15:51:40 +03:00 committed by re.kovalev
parent ba539b39d8
commit 2a465469cc
2 changed files with 4 additions and 2 deletions

View File

@ -8,7 +8,8 @@
"${workspaceFolder}/../dependencies/glad/include", "${workspaceFolder}/../dependencies/glad/include",
"${workspaceFolder}/../dependencies/glm", "${workspaceFolder}/../dependencies/glm",
"${workspaceFolder}/../dependencies/stb", "${workspaceFolder}/../dependencies/stb",
"${workspaceFolder}/../dependencies/tinyobjloader" "${workspaceFolder}/../dependencies/tinyobjloader",
"${workspaceFolder}/../dependencies/tinyglTF"
], ],
"compilerPath": "C:/MinGW/bin/g++.exe", "compilerPath": "C:/MinGW/bin/g++.exe",
"cStandard": "c11", "cStandard": "c11",

View File

@ -26,9 +26,10 @@ CFLAGS += -I../dependencies/glad/include
CFLAGS += -I../dependencies/glm CFLAGS += -I../dependencies/glm
CFLAGS += -I../dependencies/stb CFLAGS += -I../dependencies/stb
CFLAGS += -I../dependencies/tinyobjloader CFLAGS += -I../dependencies/tinyobjloader
CFLAGS += -I../dependencies/tinyglTF
# Опции линкера # Опции линкера
LDFLAGS += --std=c++11 LDFLAGS += --std=gnu++11
# Архитектурозависимые опции линкера # Архитектурозависимые опции линкера
ifeq ($(OS), Windows_NT) ifeq ($(OS), Windows_NT)
# GLFW в зависимости от архитектуры # GLFW в зависимости от архитектуры