-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake5.lua
49 lines (41 loc) · 1.29 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
-- Design456App
workspace "Design456App"
architecture "x64"
startproject "Design456App"
configurations
{
"Debug",
"Release"
}
flags
{
"MultiProcessorCompile",
}
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
-- Include directories relative to frtk
IncludeDir = {}
IncludeDir["Glad"] = "../frtk/vendor/Glad/include"
IncludeDir["imGui"] = "../frtk/vendor/imGui/src"
IncludeDir["ImGuizmo"] = "../frtk/vendor/ImGuizmo/src"
IncludeDir["spdlog"] = "../frtk/vendor/spdlog/include"
IncludeDir["glm"] = "../frtk/vendor/glm"
IncludeDir["yaml-cpp"] = "../frtk/vendor/yaml-cpp"
IncludeDir["GLFW"] = "../frtk/vendor/GLFW/include"
IncludeDir["stb_image"] = "../frtk/vendor/stb_image/src"
IncludeDir["objloader"] = "../frtk/vendor/objloader"
--Projects
--Include other lua scripts and group them as dependecies
group "Dependencies"
include "frtk/vendor/GLFW"
include "frtk/vendor/Glad"
include "frtk/vendor/imGui"
include "frtk/vendor/ImGuizmo"
include "frtk/vendor/spdlog"
include "frtk/vendor/yaml-cpp"
include "frtk/vendor/stb_image"
include "frtk/vendor/objloader"
-- Don't remove below line. Without this, the following names will be grouped as dependecies.
group ""
--to inlcude other lua scritp-project
include "frtk"
include "Design456App"