macOS: Fix makefile compiled builds not compiling due to not linking to Security framework

This commit is contained in:
UnknownShadow200 2025-08-20 07:43:34 +10:00
parent dc44cab8be
commit 6e5474959f
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ endif
ifeq ($(PLAT),darwin)
OBJECTS += $(BUILD_DIR)/src/Window_cocoa.o
LIBS =
LDFLAGS = -rdynamic -framework Cocoa -framework OpenGL -framework IOKit -lobjc
LDFLAGS = -rdynamic -framework Security -framework Cocoa -framework OpenGL -framework IOKit -lobjc
BUILD_DIR = build/macos
TARGET = $(ENAME).app
endif