From edef2a971a22479ff2529e6f409ca0387ba49155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Wed, 1 Jan 2025 13:42:55 +0800 Subject: [PATCH] enable all warnings --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2fb10fd..dbb69da 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROG= sndlock SRCS= imgui_impl_glfw.cpp imgui_impl_opengl3.cpp imgui_draw.cpp imgui_widgets.cpp imgui_tables.cpp imgui.cpp sndlock.cpp -CXXOPTS= `pkg-config --cflags glfw3 gl` +CXXOPTS= -Wall `pkg-config --cflags glfw3 gl` LDFLAGS= `pkg-config --libs glfw3 gl` LDADD= -lsndio -lm