summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2021-10-29 13:23:44 +0100
committerPhil Jones <philj56@gmail.com>2021-10-29 13:23:44 +0100
commitc691b8e48c572e2d5f1c7c16c8f42babd7d706d5 (patch)
treeb3d601919670c41e0409477e22371ab77e092aa2 /meson.build
parent3bf156c9d9598acbee38c49d17cdb7d77e79d520 (diff)
Basic text entry working.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
1 files changed, 5 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 7f1439e..a8f7cfb 100644
--- a/meson.build
+++ b/meson.build
@@ -47,13 +47,17 @@ sources = files(
'src/main.c',
'src/background.c',
'src/egl.c',
+ 'src/entry.c',
'src/gl.c',
'src/log.c',
+ 'src/surface.c',
'src/xdg-shell-protocol.c',
)
cc = meson.get_compiler('c')
epoxy = dependency('epoxy')
+glib = dependency('glib-2.0')
+pangocairo = dependency('pangocairo')
png = dependency('libpng')
wayland_client = dependency('wayland-client')
wayland_egl = dependency('wayland-egl')
@@ -62,7 +66,7 @@ xkbcommon = dependency('xkbcommon')
executable(
'greetd-mini-wl-greeter',
sources,
- dependencies: [epoxy, png, wayland_client, wayland_egl, xkbcommon],
+ dependencies: [epoxy, glib, pangocairo, png, wayland_client, wayland_egl, xkbcommon],
install: true
)