forgottenserver/data/lib/debugging/lua_version.lua
Daniel Speichert 4233f740f2
Build (cmake) and CI/CD updates (#2973)
* cmake is upgraded and related configs modified
* build using cmake on Windows (with vcpkg) is now possible
* cotire is not used when redundant (cmake >= 3.16)
* Lua version shown on startup
* Github Actions
2020-05-02 21:08:10 -04:00

5 lines
121 B
Lua

if type(jit) == 'table' then
print('>> Using ' .. jit.version) --LuaJIT 2.0.2
else
print('>> Using ' .. _VERSION)
end