Reece
100644b0de
[+] Nonstatic entities [+] Build order is not perserved anymore for UX. Namespaces are ordered more neatly now [*] Bug fixes in platform guess and remove code
13 lines
604 B
Lua
13 lines
604 B
Lua
local feature = function()
|
|
local platforms = {"win32", "linux", "xnu", "mac", "osx", "ios", "x86_64", "x86_32", "aarch", "arm64", "mips", "mips64", "riscv", "intel", "powerpc", "amiga", "unix", "android", "apple", "amd64", "freebsd", "bsd"}
|
|
forEach(platforms, function(platform)
|
|
if (not _G[platform]) then
|
|
excludes("**/" .. platform .. "/**.*");
|
|
excludes("**/*" .. platform .. ".*");
|
|
end
|
|
end)
|
|
|
|
excludes("**/arm/**"); -- whatever, we might name a file `arm` something, as in the limb, but a directory is far less likely for now
|
|
end
|
|
|
|
return feature |