enable wayland by default on linux builds
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit

This commit is contained in:
IoI_xD 2026-03-25 00:43:35 -07:00
commit fa9ad8b984
3 changed files with 17 additions and 8 deletions

6
configure vendored
View file

@ -46,6 +46,10 @@ param_set("vulkan-string-helper", 1);
param_set("shared", 1);
param_set("static", 1);
param_set("examples", 1);
print($target);
if($target eq "Linux") {
param_set("wayland", 1);
}
my %features = (
"classic-theme" => "use classic theme",
@ -58,7 +62,7 @@ my %features = (
"vulkan-string-helper" => "use Vulkan string helper",
"shared" => "build shared library",
"static" => "build static library",
"wayland" => "enable ayland backend",
"wayland" => "enable wayland backend",
);
my @features_keys = (
"1classic-theme", "1stb-image",