From 2f76a5cc49039d48eb6184c68d570a19f868721c Mon Sep 17 00:00:00 2001 From: Quinn Date: Sun, 25 Jan 2026 12:46:04 +0100 Subject: [PATCH] fix: forgot to include half of the libraries. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ea883ea..a9974e9 100644 --- a/Makefile +++ b/Makefile @@ -20,9 +20,9 @@ LDLIBS := $(LDLIBS) -lm ifeq (,$(shell command -v pkg-config)) $(error Failed to locate pkg-config, please make sure it is installed or acessible through PATH.) else -CPPFLAGS += $(shell pkg-config --cflags-only-I x11 xinerama) -LDFLAGS += $(shell pkg-config --libs-only-L x11 xinerama) -LDLIBS += $(shell pkg-config --libs-only-l x11 xinerama) +CPPFLAGS += $(shell pkg-config --cflags-only-I fontconfig freetype2 x11 xft xinerama) +LDFLAGS += $(shell pkg-config --libs-only-L fontconfig freetype2 x11 xft xinerama) +LDLIBS += $(shell pkg-config --libs-only-l fontconfig freetype2 x11 xft xinerama) endif SRC := $(wildcard src/*.c)