2016-09-22 12:02:28 +00:00
|
|
|
# Lua
|
2021-01-15 16:20:04 +00:00
|
|
|
CMake based build of Lua 5.4.0
|
|
|
|
![Build Linux](https://github.com/walterschell/Lua/workflows/Build%20Linux/badge.svg)
|
|
|
|
![Build Windows](https://github.com/walterschell/Lua/workflows/Build%20Windows/badge.svg)
|
|
|
|
![Build OSX](https://github.com/walterschell/Lua/workflows/Build%20OSX/badge.svg)
|
|
|
|
![Build Emscripten](https://github.com/walterschell/Lua/workflows/Build%20Emscripten/badge.svg)
|
2016-09-22 13:40:46 +00:00
|
|
|
# Usage
|
|
|
|
Inside of CMakeLists.txt
|
2020-06-30 12:43:48 +00:00
|
|
|
```cmake
|
|
|
|
add_subdirectory(lua)
|
|
|
|
...
|
|
|
|
target_link_libraries(<YOURTARGET> lua_static)
|
|
|
|
```
|