-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpremake5.lua
More file actions
94 lines (78 loc) · 1.7 KB
/
Copy pathpremake5.lua
File metadata and controls
94 lines (78 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
workspace "Epoch"
architecture "x64"
startproject "Epoch"
configurations
{
"Debug",
"Release",
"Dist"
}
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
-- Include directories relative to root folder(solution directory)
IncludeDir = {}
IncludeDir["GLFW"] = "Epoch/vendor/GLFW/include"
IncludeDir["Glad"] = "Epoch/vendor/Glad/include"
IncludeDir["ImGui"] = "Epoch/vendor/imgui"
IncludeDir["glm"] = "Epoch/vendor/glm"
IncludeDir["stb_image"] = "Epoch/vendor/stb_image"
include "Epoch/vendor/GLFW"
include "Epoch/vendor/Glad"
include "Epoch/vendor/imgui"
project "Epoch"
location "Epoch"
kind "ConsoleApp"
language "C++"
cppdialect "C++17"
staticruntime "On"
targetdir ("bin/" .. outputdir .. "/%{prj.name}")
objdir ("bin-int/" .. outputdir .. "/%{prj.name}")
pchheader "eppch.h"
pchsource "Epoch/src/eppch.cpp"
files
{
"%{prj.name}/src/**.h",
"%{prj.name}/src/**.cpp",
"%{prj.name}/vendor/glm/glm/**.hpp",
"%{prj.name}/vendor/glm/glm/**.inl",
"%{prj.name}/vendor/stb_image/**.h",
"%{prj.name}/vendor/stb_image/**.cpp"
}
defines
{
"_CRT_SECURE_NO_WARNINGS"
}
includedirs
{
"%{prj.name}/src",
"%{prj.name}/vendor/spdlog/include",
"%{IncludeDir.GLFW}",
"%{IncludeDir.Glad}",
"%{IncludeDir.ImGui}",
"%{IncludeDir.glm}",
"%{IncludeDir.stb_image}"
}
links
{
"GLFW",
"Glad",
"ImGui",
"opengl32.lib"
}
filter "system:windows"
systemversion "latest"
defines
{
"EP_ENABLE_ASSERTS"
}
filter "configurations:Debug"
defines "EP_DEBUG"
runtime "Debug"
symbols "On"
filter "configurations:Release"
defines "EP_RELEASE"
runtime "Release"
optimize "On"
filter "configurations:Dist"
defines "EP_Dist"
runtime "Release"
optimize "On"