-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
41 lines (35 loc) · 1.04 KB
/
Copy pathpremake5.lua
File metadata and controls
41 lines (35 loc) · 1.04 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 "EulerEngine"
architecture "x86_64"
configurations{
"Debug",
"Release",
"Dist"
}
startproject "Editor"
--toolset "v143"
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
IncludeDir = {}
IncludeDir["ImGui"] = "%{wks.location}/EulerEngine/Vendor/ImGui"
IncludeDir["Yaml_cpp"] = "%{wks.location}/EulerEngine/Vendor/Yaml-cpp/include"
IncludeDir["ImGuizmo"] = "%{wks.location}/EulerEngine/Vendor/ImGuizmo"
IncludeDir["Box2d"] = "%{wks.location}/EulerEngine/Vendor/Box2d/include"
IncludeDir["Box2d_src"] = "%{wks.location}/EulerEngine/Vendor/Box2d/src"
IncludeDir["Jolt"] = "%{wks.location}/EulerEngine/Vendor/Jolt"
Library = {}
Library["WinSock"] = "Ws2_32.lib"
Library["WinMM"] = "Winmm.lib"
Library["WinVersion"] = "Version.lib"
Library["BCrypt"] = "Bcrypt.lib"
group "Dependences"
include"EulerEngine/Vendor/ImGui"
include"EulerEngine/Vendor/Yaml-cpp"
include"EulerEngine/Vendor/Box2d"
group ""
group "Core"
include"EulerEngine"
include"EulerScript"
group ""
group "Tools"
include"Editor"
include"Sandbox"
group ""