# Init the project
Clone this repo with fetching all the data of submodules
```shell
git clone --recurse-submodules https://github.com/Cykooz/libde265-sys.git
```
Or init and fetch all the data of submodules if you already have cloned the
repo without submodules:
```shell
git submodule init
git submodule update
```
# Pull changes with submodules updating
```shell
git pull --recurse-submodules
```
# Update a version of embedded libde265
- Fetch from the remote repository:
```shell
git -C vendor/libde265 fetch origin
```
- Checkout to required tag:
```shell
git -C vendor/libde265/ checkout v1.0.16
```