summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2021-10-31 22:16:40 +0000
committerPhil Jones <philj56@gmail.com>2021-10-31 23:12:07 +0000
commit6f199dc746bd377223e9bec60467c9060d1048ff (patch)
treeacce570009d48e3efa6a1232c37070c1e0f456c8 /meson.build
parent7297ac5d9cac676ed6cd4552a6b47204f9db2512 (diff)
Add actual greetd functionality.
Useable, but very barebones — not even any error message reporting.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index e1b1a38..1e31456 100644
--- a/meson.build
+++ b/meson.build
@@ -54,7 +54,9 @@ sources = files(
'src/egl.c',
'src/entry.c',
'src/gl.c',
+ 'src/greetd.c',
'src/image.c',
+ 'src/ipc.c',
'src/log.c',
'src/surface.c',
'src/xdg-shell-protocol.c',
@@ -62,6 +64,7 @@ sources = files(
cc = meson.get_compiler('c')
epoxy = dependency('epoxy')
+json = dependency('json-c')
glib = dependency('glib-2.0')
pangocairo = dependency('pangocairo')
png = dependency('libpng')
@@ -72,7 +75,7 @@ xkbcommon = dependency('xkbcommon')
executable(
'greetd-mini-wl-greeter',
sources,
- dependencies: [epoxy, glib, pangocairo, png, wayland_client, wayland_egl, xkbcommon],
+ dependencies: [epoxy, json, glib, pangocairo, png, wayland_client, wayland_egl, xkbcommon],
install: true
)