-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
46 lines (40 loc) · 1.21 KB
/
premake5.lua
File metadata and controls
46 lines (40 loc) · 1.21 KB
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
include "./Vendor/premake/premake_customization/solution_items.lua"
workspace "ARC-Engine"
architecture "x86_64"
startproject "ARC-Editor"
configurations
{
"Debug",
"Release",
"Dist"
}
solution_items
{
".editorconfig"
}
flags
{
"MultiProcessorCompile"
}
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
IncludeDir = {}
IncludeDir["GLFW"] = "%{wks.location}/ARC-Engine/out/glfw/include"
IncludeDir["GLAD"] = "%{wks.location}/ARC-Engine/out/GLAD/include"
IncludeDir["ImGui"] = "%{wks.location}/ARC-Engine/out/imgui"
IncludeDir["yaml_cpp"] = "%{wks.location}/ARC-Engine/out/yaml-cpp/include"
IncludeDir["glm"] = "%{wks.location}/ARC-Engine/out/glm"
IncludeDir["stb_image"] = "%{wks.location}/ARC-Engine/out/stb_image"
IncludeDir["entt"] = "%{wks.location}/ARC-Engine/out/entt/src/entt"
IncludeDir["ImGuizmo"] = "%{wks.location}/ARC-Engine/out/ImGuizmo"
IncludeDir["Box2D"] = "%{wks.location}/ARC-Engine/out/Box2D/include"
group "Dependencies"
include "Vendor/premake"
include "ARC-Engine/out/GLFW"
include "ARC-Engine/out/GLAD"
include "ARC-Engine/out/imgui"
include "ARC-Engine/out/Box2D"
include "ARC-Engine/out/yaml-cpp"
group ""
include "ARC-Engine"
include "Sandbox"
include "ARC-Editor"