include glfw libraries in the makefile

This commit is contained in:
Quinn
2025-04-12 20:28:16 +02:00
committed by Quinn
parent 0c74252a2f
commit f61a72c680

View File

@@ -10,8 +10,8 @@ ARCH ?= 0
# C compiler options # C compiler options
CC := clang CC := clang
CSTD := c17 CSTD := c17
CFLAGS := -Wall -Wextra -Wpedantic -Wno-pointer-arith -static CFLAGS := $(shell pkg-config --cflags glfw3) -Wall -Wextra -Wpedantic -Wno-pointer-arith -static
LDFLAGS := LDFLAGS := $(shell pkg-config --libs glfw3)
# Rust compiler options # Rust compiler options
RUSTC := cargo rustc RUSTC := cargo rustc