Добавил tinyglTF
This commit is contained in:
parent
ba539b39d8
commit
2a465469cc
|
@ -8,7 +8,8 @@
|
|||
"${workspaceFolder}/../dependencies/glad/include",
|
||||
"${workspaceFolder}/../dependencies/glm",
|
||||
"${workspaceFolder}/../dependencies/stb",
|
||||
"${workspaceFolder}/../dependencies/tinyobjloader"
|
||||
"${workspaceFolder}/../dependencies/tinyobjloader",
|
||||
"${workspaceFolder}/../dependencies/tinyglTF"
|
||||
],
|
||||
"compilerPath": "C:/MinGW/bin/g++.exe",
|
||||
"cStandard": "c11",
|
||||
|
|
3
Makefile
3
Makefile
|
@ -26,9 +26,10 @@ CFLAGS += -I../dependencies/glad/include
|
|||
CFLAGS += -I../dependencies/glm
|
||||
CFLAGS += -I../dependencies/stb
|
||||
CFLAGS += -I../dependencies/tinyobjloader
|
||||
CFLAGS += -I../dependencies/tinyglTF
|
||||
|
||||
# Опции линкера
|
||||
LDFLAGS += --std=c++11
|
||||
LDFLAGS += --std=gnu++11
|
||||
# Архитектурозависимые опции линкера
|
||||
ifeq ($(OS), Windows_NT)
|
||||
# GLFW в зависимости от архитектуры
|
||||
|
|
Loading…
Reference in New Issue