-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpremake5.lua
225 lines (172 loc) · 4.79 KB
/
premake5.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
local ROOT_DIR = path.getabsolute(".")
local BUILD_DIR = path.join(ROOT_DIR, "projects")
local ENV = require(".env")
local PROJECT_PREFIX = "vectormath"
local MAILIB_PATH = path.join(ROOT_DIR, "examples/3rd_party/mailib")
local MaiLib = dofile(path.join(MAILIB_PATH, "premake5.mailib.lua"))
local vectormath = dofile(path.join(ROOT_DIR, "scripts", "vectormath.premake5.lua"))
local function vectormathproject(name)
if (type(name) == "string") then
project(PROJECT_PREFIX .. "_" .. name)
else
project(PROJECT_PREFIX)
end
-- Import vectormath premake5 module
vectormath.includedirs(ROOT_DIR)
vectormath.files(ROOT_DIR)
end
local function filedirs(dirs)
if type(dirs) == "string" then
files {
path.join(ROOT_DIR, dirs, "*.h"),
path.join(ROOT_DIR, dirs, "*.c"),
path.join(ROOT_DIR, dirs, "*.hpp"),
path.join(ROOT_DIR, dirs, "*.cpp"),
}
elseif type(dirs) == "table" then
for _, dir in ipairs(dirs) do
filedirs(dir)
end
end
end
newoption {
trigger = "use-clang",
description = "Use clang as compiler or toolset (visual studio)"
}
local function useclang()
local clangenabled = _OPTIONS["use-clang"]
local clangsupport = _ACTION == "vs2019" or _ACTION == "vs2022"
return clangenabled and clangsupport
end
local function getworkspacename()
local name = PROJECT_PREFIX .. "_" .. _ACTION
if useclang() then
name = name .. "_clang"
end
return name
end
workspace(getworkspacename())
do
language "C"
location (path.join(BUILD_DIR, _ACTION .. (useclang() and "_clang" or "")))
configurations {
"DebugScalar",
"ReleaseScalar",
"DebugSIMD",
"ReleaseSIMD"
}
platforms { "x32", "x64" }
-- Cflags
-- MaiLib.cflags()
cdialect "C11"
if useclang() then
toolset "clang"
end
startproject (PROJECT_PREFIX .. "_" .. "unit_tests")
filter { "configurations:Debug*" }
do
optimize "Off"
end
filter { "configurations:Release*" }
do
optimize "Full"
end
filter { "configurations:*Scalar" }
do
defines {
"VECTORMATH_SIMD_ENABLE=0"
}
end
filter { "configurations:*SIMD" }
do
defines {
"VECTORMATH_SIMD_ENABLE=1"
}
end
filter {}
end
vectormathproject("unit_tests")
do
kind "ConsoleApp"
if useclang() then
defines {
"VECTORMATH_USE_CLANG_EXT"
}
end
filedirs {
"unit_tests/cases"
}
files {
path.join(ROOT_DIR, "unit_tests/test_framework.h"),
path.join(ROOT_DIR, "unit_tests/test_run_all.cpp"),
}
filter {}
end
if _ACTION == "vs2019" or _ACTION == "vs2022" then
vectormathproject("msvc_c11_generics")
do
kind "ConsoleApp"
files {
path.join(ROOT_DIR, "unit_tests/msvc_c11_generics/main.c"),
}
filter {}
end
end
-- examples
newoption {
trigger = "with-examples",
description = "Generate examples projects"
}
if _OPTIONS["with-examples"] then
local function vectormathexample(name)
vectormathproject(name)
do
kind "ConsoleApp"
includedirs {
path.join(ROOT_DIR, "examples/common"),
path.join(ROOT_DIR, "examples", name),
path.join(ROOT_DIR, "examples/3rd_party"),
}
filedirs {
"examples/3rd_party/flecs",
"examples/common/Native",
"examples/common/Renderer",
path.join("examples", name),
path.join("examples", name, "Game"),
}
-- Select Vulkan renderer
if (_OPTIONS["vulkan"]) then
links {
--"vulkan-1"
}
includedirs {
path.join(ENV.VULKAN_DIR, "Include")
}
filter "platforms:x32"
do
libdirs {
path.join(ENV.VULKAN_DIR, "Lib32")
}
end
filter "platforms:x64"
do
libdirs {
path.join(ENV.VULKAN_DIR, "Lib")
}
end
else -- default to OpenGL renderer
defines {
"GLEW_STATIC",
}
end
filter {}
-- Import mailib
MaiLib.files(MAILIB_PATH)
MaiLib.links(MAILIB_PATH)
MaiLib.includedirs(MAILIB_PATH)
filter {}
end
end
vectormathexample("bunnymark_flecs")
vectormathexample("bunnymark_flecs_c")
end