mirror of https://github.com/ClassiCube/ClassiCube
macOS: Fix makefile compiled builds not compiling due to not linking to Security framework
This commit is contained in:
parent
dc44cab8be
commit
6e5474959f
2
Makefile
2
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue