-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
34 lines (28 loc) · 815 Bytes
/
premake5.lua
File metadata and controls
34 lines (28 loc) · 815 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
29
30
31
32
33
34
workspace "Project"
architecture "x64"
startproject "Snake"
configurations
{
"Debug",
"Release"
}
flags
{
"MultiProcessorCompile"
}
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
IncludeDir = {}
IncludeDir["glfw"] = "%{wks.location}/Engine/vendor/glfw/include"
IncludeDir["glad"] = "%{wks.location}/Engine/vendor/glad/include"
IncludeDir["imgui"] = "%{wks.location}/Engine/vendor/imgui"
IncludeDir["glm"] = "%{wks.location}/Engine/vendor/glm"
IncludeDir["stb_image"] = "%{wks.location}/Engine/vendor/stb_image"
IncludeDir["freetype"] = "%{wks.location}/Engine/vendor/freetype/include"
group "Dependencies"
include "Engine/vendor/glfw"
include "Engine/vendor/glad"
include "Engine/vendor/imgui"
include "Engine/vendor/freetype"
group ""
include "Engine"
include "Snake"