milsko/pl/ostype/FreeBSD.pl

19 lines
365 B
Perl
Raw Normal View History

2026-04-27 13:14:31 -07:00
my @enabled_backends = ();
2026-04-27 17:59:16 +09:00
add_incdir2("-I/usr/local/include");
2026-04-28 15:08:00 +09:00
add_libdir("-L/usr/local/lib -Wl,-R/usr/local/lib");
if (param_get("wayland") && not(param_get("tiny"))) {
push(@enabled_backends, "wayland");
}
if (param_get("x11")) {
push(@enabled_backends, "x11");
}
2026-04-27 13:14:31 -07:00
use_backend(@enabled_backends);
2026-04-27 17:59:16 +09:00
add_libs("-lpthread");
add_cflags("-DUSE_DBUS");
1;