From 8dc3b45f63a79bee18ad4f29cbb785de50a216b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Sun, 19 Jan 2025 19:29:24 +0800 Subject: [PATCH] use pkg-config for asio and jsoncpp --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f0dce60..8fb1977 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ PROG= sndlock SRCS= imgui_impl_glfw.cpp imgui_impl_opengl3.cpp imgui_draw.cpp imgui_widgets.cpp imgui_tables.cpp imgui.cpp kirdy.cpp sndlock.cpp -CXXOPTS= -Wall `pkg-config --cflags glfw3 gl` -LDFLAGS= `pkg-config --libs glfw3 gl` -LDADD= -lsndio -lm -ljsoncpp +CXXOPTS= -Wall `pkg-config --cflags glfw3 gl asio jsoncpp` +LDFLAGS= `pkg-config --libs glfw3 gl asio jsoncpp` +LDADD= -lsndio -lm BINDIR= /usr/local/bin NOMAN= noman