-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
41 lines (33 loc) · 1.08 KB
/
premake5.lua
File metadata and controls
41 lines (33 loc) · 1.08 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
workspace "Scotch"
architecture "x64"
startproject "Scotch-Editor"
configurations
{
"Debug",
"Release",
"Dist"
}
outputdir= "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
-- Include directories related to root folder (solution directory)
IncludeDir = {}
IncludeDir["GLFW"] = "%{wks.location}/Scotch/vendor/GLFW/include"
IncludeDir["Glad"] = "%{wks.location}/Scotch/vendor/Glad/include"
IncludeDir["ImGui"] = "%{wks.location}/Scotch/vendor/imgui"
IncludeDir["glm"] = "%{wks.location}/Scotch/vendor/glm"
IncludeDir["stb_image"] = "%{wks.location}/Scotch/vendor/stb_image"
IncludeDir["entt"] = "%{wks.location}/Scotch/vendor/entt/include"
IncludeDir["yaml"] = "%{wks.location}/Scotch/vendor/yaml-cpp/include"
IncludeDir["ImGuizmo"] = "%{wks.location}/Scotch/vendor/ImGuizmo"
group "Dependencies"
include "Scotch/vendor/GLFW"
include "Scotch/vendor/Glad"
include "Scotch/vendor/imgui"
include "Scotch/vendor/yaml-cpp"
group ""
group "Core"
include "Scotch"
include "Scotch-Editor"
group ""
group "Misc"
include "Sandbox"
group ""