Build: add -Werror to makefile

This commit is contained in:
2026-04-27 19:26:03 +02:00
parent 533afd0a4b
commit 73f892aff0
+1 -1
View File
@@ -2,7 +2,7 @@ CC := gcc
VERSION := $(shell git describe --tags --always --dirty)
CFLAGS := -Wall -Wextra -O2 \
CFLAGS := -Wall -Wextra -Werror -O2 \
-DVERSION=\"$(VERSION)\" \
$(shell pkg-config --cflags libcjson ncurses)