mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Fixes: #27476 Co-authored-by: Tyler Yankee <tyler.yankee@kitware.com>
11 lines
372 B
C
11 lines
372 B
C
|
|
#define LUA_VERSION_MAJOR_N 5
|
|
#define LUA_VERSION_MINOR_N 5
|
|
#define LUA_VERSION_RELEASE_N 0
|
|
|
|
#define LUA_VERSION_NUM (LUA_VERSION_MAJOR_N * 100 + LUA_VERSION_MINOR_N)
|
|
#define LUA_VERSION_RELEASE_NUM (LUA_VERSION_NUM * 100 + LUA_VERSION_RELEASE_N)
|
|
|
|
#define LUA_VERSION "Lua " LUA_VERSION_MAJOR "." LUA_VERSION_MINOR
|
|
#define LUA_RELEASE LUA_VERSION "." LUA_VERSION_RELEASE
|