Build/Boilerplate/platform.lua
Reece 615bcb53b9 Initial commit
Publish a collection of boilerplate and an additional json parser.
This meta build chain as-is should replace a lot of the premake5.lua in the AuroraEngine repo
2021-05-20 13:56:44 +01:00

6 lines
238 B
Lua

local archMap = {};
--archMap["target-x86_32"] = "x86_32" unsupported
archMap["target-x86_64"] = "x86_64"
archMap["target-aarch"] = "ARM64"
--archMap["target-arm"] = "ARM" unsupported
return require("Utils/lookupCmdArgs")(archMap, true)