mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
OSX: also need to add the CoreServices framework to linker
We had this before - it appears that some versions of OSX need us to explicitly list the frameworks we are using during the linking stage while others are perfectly happy without that. But since listing them doesn't appear to hurt this commit should be safe. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
92fbbd4c22
commit
6855be0f1c
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -133,7 +133,7 @@ else ifeq ($(UNAME), darwin)
|
|||
MACOSXSTAGING = $(MACOSXFILES)/Subsurface.app
|
||||
INFOPLIST = $(MACOSXFILES)/Info.plist
|
||||
INFOPLISTINPUT = $(INFOPLIST).in
|
||||
EXTRALIBS = $(shell $(PKGCONFIG) --libs gtk-mac-integration) -framework CoreFoundation
|
||||
EXTRALIBS = $(shell $(PKGCONFIG) --libs gtk-mac-integration) -framework CoreFoundation -framework CoreServices
|
||||
CFLAGS += $(shell $(PKGCONFIG) --cflags gtk-mac-integration)
|
||||
LDFLAGS += -headerpad_max_install_names -sectcreate __TEXT __info_plist $(INFOPLIST)
|
||||
GTK_MAC_BUNDLER = ~/.local/bin/gtk-mac-bundler
|
||||
|
|
Loading…
Add table
Reference in a new issue