Добавил GLM
This commit is contained in:
parent
bd6e8200d5
commit
16c8de749f
|
@ -5,7 +5,8 @@
|
||||||
"includePath": [
|
"includePath": [
|
||||||
"${workspaceFolder}/include",
|
"${workspaceFolder}/include",
|
||||||
"${workspaceFolder}/../dependencies/GLFW/include",
|
"${workspaceFolder}/../dependencies/GLFW/include",
|
||||||
"${workspaceFolder}/../dependencies/glad/include"
|
"${workspaceFolder}/../dependencies/glad/include",
|
||||||
|
"${workspaceFolder}/../dependencies/glm"
|
||||||
],
|
],
|
||||||
"compilerPath": "C:/MinGW/bin/g++.exe",
|
"compilerPath": "C:/MinGW/bin/g++.exe",
|
||||||
"cStandard": "c11",
|
"cStandard": "c11",
|
||||||
|
|
1
Makefile
1
Makefile
|
@ -23,6 +23,7 @@ CFLAGS += -c
|
||||||
CFLAGS += -I./include
|
CFLAGS += -I./include
|
||||||
CFLAGS += -I../dependencies/GLFW/include
|
CFLAGS += -I../dependencies/GLFW/include
|
||||||
CFLAGS += -I../dependencies/glad/include
|
CFLAGS += -I../dependencies/glad/include
|
||||||
|
CFLAGS += -I../dependencies/glm
|
||||||
|
|
||||||
# Опции линкера
|
# Опции линкера
|
||||||
LDFLAGS += --std=c++11
|
LDFLAGS += --std=c++11
|
||||||
|
|
Loading…
Reference in New Issue