milsko/pl/ostype/Linux.pl

16 lines
301 B
Perl
Raw Normal View History

2026-04-06 17:29:09 +09:00
my @enabled_backends = ();
2026-04-26 14:01:33 -07:00
if (param_get("wayland") && not(param_get("tiny"))) {
2026-04-06 17:29:09 +09:00
push(@enabled_backends, "wayland");
2026-05-20 13:56:20 -07:00
add_cflags(`pkg-config --cflags libdecor-0`);
}
if (param_get("x11")) {
2026-04-06 17:29:09 +09:00
push(@enabled_backends, "x11");
}
2026-04-15 16:12:38 -07:00
add_cflags("-DUSE_DBUS");
2026-05-20 13:56:20 -07:00
use_backend(@enabled_backends);
1;