Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rive-app/rive-tizen
Rive runtime for Tizen
https://github.com/rive-app/rive-tizen
Last synced: 4 days ago
JSON representation
Rive runtime for Tizen
- Host: GitHub
- URL: https://github.com/rive-app/rive-tizen
- Owner: rive-app
- License: mit
- Created: 2021-01-05T18:04:18.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-25T20:19:24.000Z (over 1 year ago)
- Last Synced: 2024-08-01T21:49:22.727Z (3 months ago)
- Language: C++
- Size: 525 KB
- Stars: 22
- Watchers: 9
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rive - Tizen
README
# Rive-Tizen
## Build
### Prerequiste
Rive-Tizen requires [ThorVG](https://github.com/Samsung/thorvg) to render Rive graphical units.
Please visit [ThorVG](https://github.com/Samsung/thorvg) and install that library by its guidance.### Prepare Sub Modules
Rive-Tizen extends [rive-cpp](https://github.com/rive-app/rive-cpp) project for exchanging backend rendering engine to Tizen specific.
Thus, you can immediately clone the rive-cpp project and build it on Rive-Tizen repo.
```
git submodule update --init --recursive
```### Build Rive-Tizen
Basically, Rive-Tizen supports [meson](https://mesonbuild.com/) build system.Install [meson](http://mesonbuild.com/Getting-meson.html) and [ninja](https://ninja-build.org/) if not installed yet.
Run meson to configure Rive-Tizen.
```
meson build
```
Run ninja to build & install Rive-Tizen
```
ninja -C build install
```