-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEklipseSandbox.lua
86 lines (70 loc) · 1.26 KB
/
EklipseSandbox.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
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
project "EklipseSandbox"
location "./"
kind "ConsoleApp" -- WindowedApp
language "C++"
cppdialect "C++17"
staticruntime "off"
targetdir ("%{wks.location}/bin/" .. outputdir .. "/%{prj.name}")
objdir ("%{wks.location}/obj/" .. outputdir .. "/%{prj.name}")
files
{
"src/**.h",
"src/**.cpp"
}
includedirs
{
"src",
"%{wks.location}/Eklipse/src",
"%{Include.ScriptAPI}",
"%{Include.glfw}",
"%{Include.glm}",
"%{Include.imgui}",
"%{Include.spdlog}",
"%{Include.entt}",
"%{Include.imguizmo}",
"%{Include.nfd}",
"%{Include.yamlcpp}",
"%{Include.filewatch}",
"%{Include.dylib}",
"%{Include.shaderc}",
}
links
{
"Eklipse",
"EklipseScriptAPI",
"spdlog",
"imgui",
}
defines
{
"SPDLOG_COMPILED_LIB"
}
filter "system:windows"
systemversion "latest"
defines
{
"EK_PLATFORM_WINDOWS"
}
filter "configurations:Debug"
runtime "Debug"
symbols "On"
defines
{
"EK_DEBUG",
"EK_ENABLE_ASSERTS"
}
filter "configurations:Release"
runtime "Release"
optimize "On"
defines
{
"EK_RELEASE",
"EK_ENABLE_ASSERTS"
}
filter "configurations:Dist"
runtime "Release"
optimize "On"
defines
{
"EK_DIST"
}