i think this is probably needed for doing wayland on freebsd?

This commit is contained in:
IoIxD 2026-04-27 12:39:23 -07:00
commit d909812891
3 changed files with 13 additions and 3 deletions

View file

@ -1,7 +1,14 @@
add_incdir2("-I/usr/local/include");
add_libdir(
"-L/usr/local/lib -Wl,-R/usr/local/lib");
use_backend("x11");
if (param_get("wayland") && not(param_get("tiny"))) {
push(@enabled_backends, "wayland");
}
if (param_get("x11")) {
push(@enabled_backends, "x11");
}
add_libs("-lpthread");
add_cflags("-DUSE_DBUS");