An open API service indexing awesome lists of open source software.

https://github.com/painfulexistence/lua-dialect-playground

Playing with CMake to explore and set up various Lua dialects
https://github.com/painfulexistence/lua-dialect-playground

Last synced: 8 months ago
JSON representation

Playing with CMake to explore and set up various Lua dialects

Awesome Lists containing this project

README

          

# Lua Dialect Playground 🛝

## Building
On macOS, run the following script first to install dependencies and set up env variables:
```bash
brew install cmake llvm
export SDKROOT="$(xcrun --sdk macosx --show-sdk-path)"
```
And then use CMake:
```bash
cmake -S . -B build -DCMAKE_PREFIX_PATH=/llvm/install/path
cmake --build build
```