diff options
author | Erik Reider <[email protected]> | 2022-11-12 15:04:29 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-12 09:04:29 -0500 |
commit | c82adeb7c09cf9200e6f0ca217443c9d8bcd20bd (patch) | |
tree | aeb12701c6ddc21c3a5798764ed96d0ce6aa940c | |
parent | 6ef904a960395c7cc81f60febb3d385d9aea4920 (diff) |
Add EGL as sway dependency (#33)
-rw-r--r-- | meson.build | 1 | ||||
-rw-r--r-- | sway/meson.build | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 5e4de87f..ab295254 100644 --- a/meson.build +++ b/meson.build @@ -41,6 +41,7 @@ wayland_server = dependency('wayland-server', version: '>=1.20.0') wayland_client = dependency('wayland-client') wayland_cursor = dependency('wayland-cursor') wayland_egl = dependency('wayland-egl') +egl = dependency('egl') wayland_protos = dependency('wayland-protocols', version: '>=1.24') xkbcommon = dependency('xkbcommon') cairo = dependency('cairo') diff --git a/sway/meson.build b/sway/meson.build index 461fee87..b740b4af 100644 --- a/sway/meson.build +++ b/sway/meson.build @@ -225,6 +225,7 @@ sway_deps = [ wayland_server, wlroots, xkbcommon, + egl, ] if have_xwayland |