From 49c7405b6a88e56bb69e12189adb719927343e07 Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Mon, 15 Nov 2021 19:37:48 +0000 Subject: 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 --- meson.build | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'meson.build') 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 ) -- cgit v1.2.3