The framebuffer is a legacy backend and we know that at least OpenSUSE disabled it in the kernel configuration, so let's make it optional.
5 lines
98 B
Bash
Executable file
5 lines
98 B
Bash
Executable file
#!/bin/bash
|
|
|
|
rm -rf _build
|
|
meson setup _build -Dlvgl_backends=framebuffer
|
|
meson compile -C _build
|