-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDependencies.lua
More file actions
21 lines (18 loc) · 815 Bytes
/
Dependencies.lua
File metadata and controls
21 lines (18 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
-- You can put your dependencies here
IncludeDir = {}
IncludeDir["ImGui"] = "%{wks.location}/Vendor/ImGui/"
IncludeDir["backends"] = "%{wks.location}/Vendor/ImGui/backends"
IncludeDir["SDL"] = "%{wks.location}/Vendor/SDL/include/"
IncludeDir["IconFontCppHeaders"] = "%{wks.location}/Vendor/IconFontCppHeaders/"
IncludeDir["assimp"] = "%{wks.location}/Vendor/assimp/include"
IncludeDir["Glew"] = "%{wks.location}/Vendor/Glew/include"
IncludeDir["GLM"] = "%{wks.location}/Vendor/glm"
IncludeDir["SPDLOG"] = "%{wks.location}/Vendor/spdlog/include"
IncludeDir["JSON"] = "%{wks.location}/Vendor/rapidjson"
IncludeDir["STB"] = "%{wks.location}/Vendor/stb"
IncludeDir["GLI"] = "%{wks.location}/Vendor/gli/gli"
group "Dependencies"
include "Vendor/ImGui"
include "Vendor/SDL/SDL2"
include "Vendor/SDL/SDL2main"
group ""