mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-30 12:54:19 +00:00
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
|