summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2021-11-15 19:37:48 +0000
committerPhil Jones <philj56@gmail.com>2021-11-15 19:37:48 +0000
commit49c7405b6a88e56bb69e12189adb719927343e07 (patch)
tree72c7691e746563cc1396c5b555659c813572c12e /meson.build
parent108df42e561b7e81ba09a8c278a562129e651bb6 (diff)
Multiple smaller changes.
- Remove the background image and libpng dependency - Add a prompt - Add xmalloc with out-of-memory handling - Add beginnings of a rofi-like run cache
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 2 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 344cfcd..ea1db95 100644
--- a/meson.build
+++ b/meson.build
@@ -67,12 +67,12 @@ sources = files(
'src/egl.c',
'src/entry.c',
'src/gl.c',
- 'src/image.c',
'src/ipc.c',
'src/log.c',
'src/string_vec.c',
'src/surface.c',
'src/wlr-layer-shell-unstable-v1.c',
+ 'src/xmalloc.c',
)
cc = meson.get_compiler('c')
@@ -80,7 +80,6 @@ epoxy = dependency('epoxy')
glib = dependency('glib-2.0')
json = dependency('json-c')
pangocairo = dependency('pangocairo')
-png = dependency('libpng')
wayland_client = dependency('wayland-client')
wayland_egl = dependency('wayland-egl')
wayland_protocols = dependency('wayland-protocols', native: true)
@@ -119,7 +118,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, wayland_egl, xkbcommon],
install: true
)