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

https://github.com/vandercat/yogasharp

C# Bindings for Facebook's Yoga layout engine
https://github.com/vandercat/yogasharp

Last synced: 6 months ago
JSON representation

C# Bindings for Facebook's Yoga layout engine

Awesome Lists containing this project

README

          

# YogaSharp
A facebook/yoga layout engine bindings for C# programming language

Yoga.Interop bindings are generated using ClangSharp

## Generating Yoga.Interop
install ClangSharpPInvokeGenerator and then run `generation.ps1`/`generaion.sh`
```shell
dotnet tool install --global ClangSharpPInvokeGenerator
```
## Building notes
you need to compile a (lib)yoga.dll/.so and place it in YogaCpp/build/ (or you can just build it rn)
```shell
cmake . -B YogaCpp/build -G Ninja
cd YogaCpp/build
ninja
```