mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-09-02 14:52:52 +02:00
Allow specifying a custom ibtool path
This commit is contained in:
6
Makefile
6
Makefile
@@ -136,6 +136,8 @@ CC := clang
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
IBTOOL ?= ibtool
|
||||||
|
|
||||||
# Find libraries with pkg-config if available.
|
# Find libraries with pkg-config if available.
|
||||||
ifneq (, $(shell which pkg-config 2> $(NULL)))
|
ifneq (, $(shell which pkg-config 2> $(NULL)))
|
||||||
# But not on macOS, it's annoying, and not on Haiku, where OpenGL is broken
|
# But not on macOS, it's annoying, and not on Haiku, where OpenGL is broken
|
||||||
@@ -590,10 +592,10 @@ ifeq ($(CONF), release)
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
$(BIN)/SameBoy.app/Contents/Resources/%.nib: Cocoa/%.xib
|
$(BIN)/SameBoy.app/Contents/Resources/%.nib: Cocoa/%.xib
|
||||||
ibtool --target-device mac --minimum-deployment-target 10.9 --compile $@ $^ 2>&1 | cat -
|
$(IBTOOL) --target-device mac --minimum-deployment-target 10.9 --compile $@ $^ 2>&1 | cat -
|
||||||
|
|
||||||
$(BIN)/SameBoy-iOS.app/%.storyboardc: iOS/%.storyboard
|
$(BIN)/SameBoy-iOS.app/%.storyboardc: iOS/%.storyboard
|
||||||
ibtool --target-device iphone --target-device ipad --minimum-deployment-target $(IOS_MIN) --compile $@ $^ 2>&1 | cat -
|
$(IBTOOL) --target-device iphone --target-device ipad --minimum-deployment-target $(IOS_MIN) --compile $@ $^ 2>&1 | cat -
|
||||||
|
|
||||||
# Quick Look generators
|
# Quick Look generators
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user