-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake5.lua
58 lines (40 loc) · 1.03 KB
/
premake5.lua
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
include "premake_POGEngineBase.lua"
workspace "POGEngine"
architecture "x64"
configurations
{
"Debug",
"Release",
"Dist"
}
startproject "Example"
solutionitems
{
{ ["Workspace Items"] =
{
".gitignore",
"premake5.lua",
"premake_Base.lua",
"premake_POGEngineBase.lua",
}
},
}
group "External Dependencies"
include "External/FreeType/premake5.lua"
include "External/GLFW/premake5.lua"
include "External/Glad/premake5.lua"
include "External/GoogleTest/premake5.lua"
include "External/ImGui/premake5.lua"
group "Examples"
include "Source/Example/premake5.lua"
group "POG Editor"
include "Source/POGEditor/premake5.lua"
group "POG Engine"
include "Source/POGCommon/premake5.lua"
include "Source/POGCore/premake5.lua"
include "Source/POGDebug/premake5.lua"
include "Source/POGGraphics/premake5.lua"
include "Source/POGLog/premake5.lua"
include "Source/POGMaths/premake5.lua"
include "Source/POGTest/premake5.lua"
include "Source/POGUtil/premake5.lua"