-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
30 lines (23 loc) · 841 Bytes
/
premake5.lua
File metadata and controls
30 lines (23 loc) · 841 Bytes
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
workspace "Smedja"
architecture "x64"
configurations {
"Debug",
"Release"
}
flags {"MultiProcessorCompile"}
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
IncludeDir = {}
IncludeDir["glad"] = "%{wks.location}/Smedja/vendor/glad/include"
IncludeDir["glfw"] = "%{wks.location}/Smedja/vendor/glfw/include"
IncludeDir["imgui"] = "%{wks.location}/Smedja/vendor/imgui"
IncludeDir["glm"] = "%{wks.location}/Smedja/vendor/glm"
IncludeDir["spdlog"] = "%{wks.location}/Smedja/vendor/spdlog/include"
IncludeDir["stb_image"] = "%{wks.location}/Smedja/vendor/stb_image"
include "Smedja/vendor/glad.lua"
include "Smedja/vendor/glfw.lua"
include "Smedja/vendor/imgui.lua"
include "Smedja/vendor/spdlog.lua"
-- include "Smedja/vendor/glm.lua"
-- include "Smedja/vendor/stb_image.lua"
include "Smedja"
include "Sandbox"