Добавил tinyOBJloader
This commit is contained in:
parent
635422c699
commit
9c387cd701
|
@ -7,7 +7,8 @@
|
||||||
"${workspaceFolder}/../dependencies/GLFW/include",
|
"${workspaceFolder}/../dependencies/GLFW/include",
|
||||||
"${workspaceFolder}/../dependencies/glad/include",
|
"${workspaceFolder}/../dependencies/glad/include",
|
||||||
"${workspaceFolder}/../dependencies/glm",
|
"${workspaceFolder}/../dependencies/glm",
|
||||||
"${workspaceFolder}/../dependencies/stb"
|
"${workspaceFolder}/../dependencies/stb",
|
||||||
|
"${workspaceFolder}/../dependencies/tinyobjloader"
|
||||||
],
|
],
|
||||||
"compilerPath": "C:/MinGW/bin/g++.exe",
|
"compilerPath": "C:/MinGW/bin/g++.exe",
|
||||||
"cStandard": "c11",
|
"cStandard": "c11",
|
||||||
|
|
1
Makefile
1
Makefile
|
@ -25,6 +25,7 @@ CFLAGS += -I../dependencies/GLFW/include
|
||||||
CFLAGS += -I../dependencies/glad/include
|
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
|
||||||
|
|
||||||
# Опции линкера
|
# Опции линкера
|
||||||
LDFLAGS += --std=c++11
|
LDFLAGS += --std=c++11
|
||||||
|
|
Loading…
Reference in New Issue