milsko/pl/ostype/Linux.pl
IoI_xD c705d2b98c
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
generate pkgconfig file (don't commit yet i fucked it up)
2026-07-15 17:32:53 -07:00

14 lines
264 B
Raku

my @enabled_backends = ();
if (param_get("wayland") && not(param_get("tiny"))) {
push(@enabled_backends, "wayland");
}
if (param_get("x11")) {
push(@enabled_backends, "x11");
}
add_cflags("-DUSE_DBUS");
use_backend(@enabled_backends);
1;