From e3a3c4f6a49009b62b3bf40ec8ad563c1cca7a76 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Sun, 4 Jan 2026 13:37:30 -0500 Subject: [PATCH] ignore compiler warnings from raylib --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 95775e8..4a52e85 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Compiler and flags CXX = g++ -CXXFLAGS = -Wall -Wextra -std=c++11 -I./src -I./ext/raylib/src +CXXFLAGS = -Wall -Wextra -std=c++11 -I./src -isystem./ext/raylib/src LDFLAGS = -L./ext/raylib/src -lraylib -lm -lpthread -ldl -lrt -lX11 # Directories