diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-30 17:47:38 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-30 17:47:38 +0100 |
commit | 6a126b0934d1dac09aaf504da2f5d7dc1156feda (patch) | |
tree | d9952ab88e669f319a7d906348d6d6557bbb44b2 /platform/linuxbsd/SCsub | |
parent | a8cfd1436a5e9c87ff4910a18641e60761994076 (diff) | |
parent | 7e0f7d3abd4a02f423a5b95616840e028a9af7fa (diff) | |
download | redot-engine-6a126b0934d1dac09aaf504da2f5d7dc1156feda.tar.gz |
Merge pull request #86180 from Riteo/wayland-squashed
Add Wayland support (squashed review edition)
Diffstat (limited to 'platform/linuxbsd/SCsub')
-rw-r--r-- | platform/linuxbsd/SCsub | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/linuxbsd/SCsub b/platform/linuxbsd/SCsub index 4dd74ff9d0..a3ce773ac2 100644 --- a/platform/linuxbsd/SCsub +++ b/platform/linuxbsd/SCsub @@ -19,6 +19,9 @@ if env["use_sowrap"]: if env["x11"]: common_linuxbsd += SConscript("x11/SCsub") +if env["wayland"]: + common_linuxbsd += SConscript("wayland/SCsub") + if env["speechd"]: common_linuxbsd.append("tts_linux.cpp") if env["use_sowrap"]: |