mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-05 21:59:45 +00:00
create dummy SpringBoardAccess MobileSubstrate extension when configured for iPhone
This commit is contained in:
parent
eedbedf604
commit
f474b6814f
20
SpringBoardAccess/Makefile.in
Normal file
20
SpringBoardAccess/Makefile.in
Normal file
@ -0,0 +1,20 @@
|
||||
NAME = SpringBoardAccess
|
||||
|
||||
OBJC = @OBJC@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
|
||||
LDFLAGS += -lobjc \
|
||||
-multiply_defined suppress \
|
||||
-framework CoreFoundation \
|
||||
-framework Foundation \
|
||||
-framework UIKit \
|
||||
-L../3rdparty -lsubstrate
|
||||
|
||||
all: $(NAME).dylib
|
||||
|
||||
clean:
|
||||
rm -f $(NAME).dylib
|
||||
|
||||
$(NAME).dylib: $(NAME).m
|
||||
$(OBJC) $(CPPFLAGS) -dynamiclib -o $@ $(NAME).m -init _$(NAME)Initialize $(LDFLAGS)
|
14
SpringBoardAccess/SpringBoardAccess.m
Normal file
14
SpringBoardAccess/SpringBoardAccess.m
Normal file
@ -0,0 +1,14 @@
|
||||
//
|
||||
// SpringBoardAccess.m
|
||||
//
|
||||
// Created by Matthias Ringwald on 9/15/09.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <CoreFoundation/CoreFoundation.h>
|
||||
|
||||
#import "../3rdparty/substrate.h"
|
||||
|
||||
void SpringBoardAccessInitialize(){
|
||||
NSLog(@"SpringBoardAccessInitialize called!");
|
||||
}
|
Loading…
Reference in New Issue
Block a user