-
Notifications
You must be signed in to change notification settings - Fork 47
/
hlsl++.lua
317 lines (249 loc) · 7.01 KB
/
hlsl++.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
require ('premake-xbox360/xbox360')
require ("vstudio")
Workspace = "workspace/".._ACTION
-- Compilers
-- Visual Studio Configs
PlatformMSVC64AVX512 = "MSVC 64 AVX512"
PlatformMSVC64AVX2 = "MSVC 64 AVX2"
PlatformMSVC64AVX = "MSVC 64 AVX"
PlatformMSVC64SSE41 = "MSVC 64 SSE 4.1"
PlatformMSVC64SSE2 = "MSVC 64 SSE 2"
PlatformMSVC64Scalar = "MSVC 64 Scalar"
PlatformMSVC32SSE2 = "MSVC 32 SSE 2"
PlatformLLVM64AVX = "LLVM 64 AVX"
PlatformLLVM64SSE41 = "LLVM 64 SSE 4.1"
PlatformLLVM64SSE2 = "LLVM 64 SSE 2"
PlatformLLVM32SSE2 = "LLVM 32 SSE 2"
PlatformARM = "MSVC ARM"
PlatformARM64 = "MSVC ARM64"
PlatformWSL64GCC = 'Linux 64 GCC'
PlatformWSL64Clang = 'Linux 64 Clang'
PlatformAndroidARM = "Android ARM"
PlatformAndroidARM64 = "Android ARM64"
Platform360 = "Xbox 360"
-- XCode Configs
PlatformOSX64 = "OSX 64"
-- Linux Make Configs
PlatformLinux64_GCC = "Linux64_GCC"
PlatformLinux64_Clang = "Linux64_Clang"
UnitTestProject = "unit_tests"
AndroidProject = "hlsl++_android"
isXCodeBuild = _ACTION == "xcode4"
isLinuxMakeBuild = _ACTION == "gmake2"
isVisualStudioBuild = not isXCodeBuild and not isLinuxMakeBuild
supportsARMBuild = _ACTION == "vs2017" or _ACTION == "vs2019" or _ACTION == "vs2022"
-- Directories
unitTestDir = "unit_tests"
includeDir = "include"
premake.override(premake.vstudio.vc2010.elements, "clCompile", function(oldfn, cfg)
local calls = oldfn(cfg)
table.insert(calls, function(cfg)
premake.vstudio.vc2010.element("SupportJustMyCode", nil, "false")
end)
return calls
end)
function handleAndroidWarnings()
buildoptions
{
"-Wno-error=macro-redefined"
}
end
workspace("hlsl++")
configurations { "Debug", "Release" }
location (Workspace)
flags
{
"multiprocessorcompile", -- /MP
}
includedirs
{
includeDir,
}
vectorextensions ("sse4.1")
cppdialect("c++11")
defines { "HLSLPP_FEATURE_TRANSFORM" }
warnings('extra')
flags { 'fatalcompilewarnings' }
if(isXCodeBuild) then
platforms { PlatformOSX64 }
toolset("clang")
architecture("x64")
buildoptions { "-std=c++11" }
linkoptions { "-stdlib=libc++" }
elseif(isLinuxMakeBuild) then
platforms { PlatformLinux64_GCC, PlatformLinux64_Clang }
architecture("x64")
buildoptions { "-std=c++11 -msse4.1" }
filter { "platforms:"..PlatformLinux64_GCC }
toolset("gcc")
filter { "platforms:"..PlatformLinux64_Clang }
toolset("clang")
else
platforms
{
PlatformMSVC64AVX512,
PlatformMSVC64AVX2,
PlatformMSVC64AVX,
PlatformMSVC64SSE41,
PlatformMSVC64SSE2,
PlatformMSVC64Scalar,
PlatformMSVC32SSE2,
PlatformLLVM64AVX,
PlatformLLVM64SSE41,
PlatformLLVM64SSE2,
PlatformLLVM32SSE2,
PlatformWSL64GCC,
PlatformWSL64Clang,
Platform360,
}
if(supportsARMBuild) then
platforms
{
PlatformARM,
PlatformARM64,
PlatformAndroidARM,
PlatformAndroidARM64
}
end
local llvmToolset;
if (_ACTION == "vs2015") then
llvmToolset = "msc-llvm-vs2014";
elseif(_ACTION == "vs2017") then
llvmToolset = "msc-llvm";
else
llvmToolset = "msc-clangcl";
end
startproject(UnitTestProject)
filter { "platforms:"..PlatformMSVC64AVX512 }
toolset("msc")
architecture("x64")
buildoptions { "/arch:AVX512" }
filter { "platforms:"..PlatformMSVC64AVX2 }
toolset("msc")
architecture("x64")
vectorextensions("avx2")
filter { "platforms:"..PlatformMSVC64AVX }
toolset("msc")
architecture("x64")
vectorextensions("avx")
filter { "platforms:"..PlatformMSVC64SSE41 }
toolset("msc")
architecture("x64")
vectorextensions("sse4.1")
defines { "__SSE4_1__" }
filter { "platforms:"..PlatformMSVC64SSE2 }
toolset("msc")
architecture("x64")
vectorextensions("sse2")
filter { "platforms:"..PlatformMSVC64Scalar }
toolset("msc")
architecture("x64")
defines { "HLSLPP_SCALAR" }
filter { "platforms:"..PlatformMSVC32SSE2 }
toolset("msc")
vectorextensions("sse2")
filter { "platforms:"..PlatformLLVM64AVX }
toolset(llvmToolset)
architecture("x64")
vectorextensions("avx")
buildoptions { "-mavx" }
filter { "platforms:"..PlatformLLVM64SSE41 }
toolset(llvmToolset)
architecture("x64")
vectorextensions("sse4.1")
defines { "__SSE4_1__" }
buildoptions { "-msse4.1" }
filter { "platforms:"..PlatformLLVM64SSE2 }
toolset(llvmToolset)
architecture("x64")
vectorextensions("sse2")
filter { "platforms:"..PlatformLLVM32SSE2 }
toolset(llvmToolset)
filter { "platforms:"..PlatformARM }
architecture("arm")
vectorextensions ("neon")
filter { "platforms:"..PlatformARM64 }
architecture("arm64")
vectorextensions ("neon")
filter { "platforms:"..PlatformAndroidARM }
system("android")
architecture("arm")
linkoptions { "-lm" } -- Link against the standard math library
handleAndroidWarnings()
filter { "platforms:"..PlatformAndroidARM64 }
system("android")
architecture("arm64")
linkoptions { "-lm" } -- Link against the standard math library
handleAndroidWarnings()
filter { 'platforms:'..PlatformWSL64GCC..' or '..PlatformWSL64Clang}
system('linux')
architecture('x64')
toolchainversion('wsl2')
-- Make sure all files are copied to the same folder, without splitting by project
-- This works for both remote and WSL projects
remoterootdir("~/projects/hlslpp")
remoteprojectrelativedir("")
remoteprojectdir("$(RemoteRootDir)")
remotedeploydir("$(RemoteRootDir)")
filter { 'platforms:'..PlatformWSL64GCC}
toolset('gcc')
filter { 'platforms:'..PlatformWSL64Clang}
toolset('clang')
filter { "platforms:"..Platform360 }
system("xbox360")
vectorextensions ("default")
defines("_XBOX")
filter{}
end
filter { "configurations:Debug" }
defines { "DEBUG" }
symbols ("full")
inlining("auto") -- hlslpp relies on inlining for speed, big gains in debug builds without losing legibility
optimize("debug")
filter { "configurations:Release" }
defines { "NDEBUG" }
inlining("auto")
optimize("speed")
project ("hlsl++")
kind("staticlib")
language("c++")
files
{
includeDir.."/**.h",
includeDir.."/*.natvis"
}
project (UnitTestProject)
kind("consoleapp")
--links { "hlsl++" }
files
{
unitTestDir.."/*.cpp",
unitTestDir.."/*.h",
}
filter { "platforms:"..PlatformAndroidARM.." or ".. PlatformAndroidARM64}
kind("sharedlib")
files
{
unitTestDir.."/android/android_native_app_glue.h",
unitTestDir.."/android/android_native_app_glue.c",
}
filter{}
includedirs
{
unitTestDir.."/**.h"
}
if (supportsARMBuild) then
project (AndroidProject)
removeplatforms("*")
platforms { PlatformAndroidARM, PlatformAndroidARM64 }
kind("Packaging") -- This type of project builds the apk
links (UnitTestProject) -- Android needs to link to the main project which was built as a dynamic library
androidapplibname(UnitTestProject)
files
{
unitTestDir.."/android/AndroidManifest.xml",
unitTestDir.."/android/build.xml",
unitTestDir.."/android/project.properties",
unitTestDir.."/android/res/values/strings.xml",
}
end