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
- Host: GitHub
- URL: https://github.com/painfulexistence/lua-dialect-playground
- Owner: painfulexistence
- License: mit
- Created: 2024-04-06T03:49:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-07T04:10:55.000Z (over 1 year ago)
- Last Synced: 2024-12-31T19:20:46.398Z (9 months ago)
- Language: CMake
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```