milsko/pl/ostype/Linux.pl
IoI_xD 54fed150e8
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
dbus
2026-04-15 16:12:38 -07:00

14 lines
224 B
Raku

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