1
0
Fork 0
mirror of https://github.com/Reuh/candran.git synced 2025-10-27 09:59:29 +00:00

Add Lua 5.2 target

This commit is contained in:
Étienne Fildadut 2020-12-24 17:25:28 +01:00
parent bf4cadc349
commit 7e4b46ba7d
6 changed files with 1359 additions and 279 deletions

View file

@ -3,6 +3,7 @@
#import("compiler.lua54")
#import("compiler.lua53")
#import("compiler.lua52")
#import("compiler.luajit")
#import("compiler.lua51")
@ -36,7 +37,7 @@ if _VERSION == "Lua 5.1" then
candran.default.target = "lua51"
end
elseif _VERSION == "Lua 5.2" then
candran.default.target = "lua51"
candran.default.target = "lua52"
elseif _VERSION == "Lua 5.3" then
candran.default.target = "lua53"
end