-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
28 lines (22 loc) · 736 Bytes
/
premake5.lua
File metadata and controls
28 lines (22 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
workspace "Deyo"
architecture "x64"
platforms "Windows"
configurations { "Debug", "Release", "Dist" }
outputdir = "%{cfg.buildcfg}_%{cfg.platform}_%{cfg.architecture}"
IncludeDir = {}
IncludeDir["spdlog"] = "%{wks.location}/Deyo/vendor/spdlog/include"
IncludeDir["GLFW"] = "%{wks.location}/Deyo/vendor/GLFW/include"
IncludeDir["GLAD"] = "%{wks.location}/Deyo/vendor/GLAD/include"
IncludeDir["ImGui"] = "%{wks.location}/Deyo/vendor/ImGui"
IncludeDir["GLM"] = "%{wks.location}/Deyo/vendor/GLM"
-- the engine
group "Core"
include "Deyo"
-- client applications
group "Deyo Clients"
include "Playground"
-- engine dependencies
group "ThirdParty"
include "Deyo/vendor/GLFW"
include "Deyo/vendor/GLAD"
include "Deyo/vendor/ImGui"