Add dependency entt

This commit is contained in:
Riyyi
2021-01-13 12:56:08 +01:00
parent 29620c141e
commit 3d78f056fb
4 changed files with 7 additions and 1 deletions
+3
View File
@@ -10,3 +10,6 @@
[submodule "inferno/vendor/stb"] [submodule "inferno/vendor/stb"]
path = inferno/vendor/stb path = inferno/vendor/stb
url = https://github.com/nothings/stb url = https://github.com/nothings/stb
[submodule "inferno/vendor/entt"]
path = inferno/vendor/entt
url = https://github.com/skypjack/entt
+2 -1
View File
@@ -46,12 +46,13 @@ endif()
# Include all headers # Include all headers
include_directories( include_directories(
"${ENGINE}/src"
"${ENGINE}/vendor/entt/src"
"${ENGINE}/vendor/glad/include" "${ENGINE}/vendor/glad/include"
"${ENGINE}/vendor/glfw/include" "${ENGINE}/vendor/glfw/include"
"${ENGINE}/vendor/glm" "${ENGINE}/vendor/glm"
"${ENGINE}/vendor/json/include" "${ENGINE}/vendor/json/include"
"${ENGINE}/vendor/stb" "${ENGINE}/vendor/stb"
"${ENGINE}/src"
) )
# Define engine source files # Define engine source files
+1
View File
@@ -35,6 +35,7 @@ Or
* Libraries * Libraries
# - [[https://github.com/bulletphysics/bullet3][Bullet]] # - [[https://github.com/bulletphysics/bullet3][Bullet]]
- [[https://github.com/skypjack/entt][EnTT]]
- [[https://github.com/Dav1dde/glad][glad]] - [[https://github.com/Dav1dde/glad][glad]]
- [[https://github.com/glfw/glfw][GLFW]] - [[https://github.com/glfw/glfw][GLFW]]
- [[https://github.com/g-truc/glm][GLM]] - [[https://github.com/g-truc/glm][GLM]]
Vendored Submodule
+1
Submodule inferno/vendor/entt added at 47ada87ba2