mirror of
https://github.com/walterschell/Lua.git
synced 2024-11-10 01:01:46 +00:00
d25eef975e
Try matrix build Better nameing Added fail-fast: false Add emscripten build Split workflow into seperate workflows for seperate badges Forgot to save changes on last commit Added badges to markdown Styling badges on new lines
14 lines
520 B
Markdown
14 lines
520 B
Markdown
# Lua
|
|
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)
|
|
# Usage
|
|
Inside of CMakeLists.txt
|
|
```cmake
|
|
add_subdirectory(lua)
|
|
...
|
|
target_link_libraries(<YOURTARGET> lua_static)
|
|
```
|