diff options
author | Phil Jones <philj56@gmail.com> | 2021-11-07 18:12:52 +0000 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2021-11-07 18:12:52 +0000 |
commit | 9a0ee7624c19acf7fabb311e6c01c45cc72a1da3 (patch) | |
tree | dbbeb78b90d1722678878cd27c5dd0d2b984babe /meson.build | |
parent | ae23e86114f559ce6d01a3e2499fc5417dc90d37 (diff) |
Initial working build.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index abc3d0e..ad8d281 100644 --- a/meson.build +++ b/meson.build @@ -67,7 +67,6 @@ sources = files( 'src/egl.c', 'src/entry.c', 'src/gl.c', - 'src/greetd.c', 'src/image.c', 'src/ipc.c', 'src/log.c', @@ -81,6 +80,7 @@ glib = dependency('glib-2.0') json = dependency('json-c') pangocairo = dependency('pangocairo') png = dependency('libpng') +threads = dependency('threads') wayland_client = dependency('wayland-client') wayland_egl = dependency('wayland-egl') wayland_protocols = dependency('wayland-protocols', native: true) @@ -119,7 +119,7 @@ endforeach executable( 'tofi', sources, wl_proto_src, wl_proto_headers, - dependencies: [epoxy, json, glib, pangocairo, png, wayland_egl, xkbcommon], + dependencies: [epoxy, json, glib, pangocairo, png, threads, wayland_egl, xkbcommon], install: true ) |