CMake based build of Lua (5.4.6 and 5.3.3)
Go to file
Clemens Jonischkeit 8658373dd9 modified check for readline and tinfo
- switched from CHECK_INCLUDE_FILE to CHECK_LIBRARY_EXISTS
	fixes detection issue of readline on archlinux due to
	missing imports (unknown type FILE)
- discovering tinfo using CHECK_LIBRARY_EXISTS
	the result is used in the discovery of readline as the same
	error as discussed in walterschell/Lua#32 prevented the
	detection of readline
2024-04-27 12:21:48 +02:00
.github/workflows Comment out emscripten package test 2023-07-11 06:48:58 -04:00
lua-5.4.6 modified check for readline and tinfo 2024-04-27 12:21:48 +02:00
lua-5.4.6-tests Added 5.4.5 sources,tests and extracted 2023-07-11 07:07:53 -04:00
lua-config-package-tests Add link to LUA_LIBRARIES in test for module compatible mode 2023-07-09 17:52:18 -04:00
orig_sources Removed 5.4.5 2023-07-11 07:24:08 -04:00
.gitignore Initial commit 2016-09-22 08:02:28 -04:00
CMakeLists.txt Updated CMakeLists.txt 2023-08-08 05:22:22 +02:00
README.md Updated CMake and README.md for 5.4.6 2023-07-11 07:21:55 -04:00

Lua

CMake based build of Lua 5.4.6

Build as C Build as C++
Build Linux Build Linux as C++
Build Windows Build Windows as C++
Build OSX Build OSX as C++
Build Emscripten Build Emscripten as C++

Usage

Inside of your project's CMakeLists.txt

add_subdirectory(lua)
...
target_link_libraries(<YOURTARGET> lua_static)