mirror of
https://github.com/walterschell/Lua.git
synced 2025-03-04 13:15:55 +08:00
16 lines
1.2 KiB
Markdown
16 lines
1.2 KiB
Markdown
# Lua
|
|
CMake based build of Lua 5.4.2
|
|
| Build as C | Build as C++ |
|
|
| --: | --: |
|
|
|  |  |
|
|
|  |  |
|
|
|  |  |
|
|
|  |  |
|
|
# Usage
|
|
Inside of your project's CMakeLists.txt
|
|
```cmake
|
|
add_subdirectory(lua)
|
|
...
|
|
target_link_libraries(<YOURTARGET> lua_static)
|
|
```
|