Restructure project targets and binary distribution target

- Use one common static lib target
- create embeddedFramework as binary distribution including docset in one zip
- Add HockeySDK.xcconfig for easier build setting setup
- Move everything into a single directory, too many problems making binary and subproject work without requing recursive header search paths
- Documentation update pending
This commit is contained in:
Andreas Linde
2012-10-07 21:49:47 +02:00
parent d3ece9f2b1
commit 9b8f51fe5f
49 changed files with 155 additions and 640 deletions

1
.gitignore vendored
View File

@@ -20,3 +20,4 @@ profile
profile
documentation/
Products/

View File

@@ -30,7 +30,7 @@
#import <Foundation/Foundation.h>
#import "../Helper/BITHockeyBaseManager.h"
#import "BITHockeyBaseManager.h"
// hockey crash manager status

View File

@@ -29,7 +29,7 @@
#import <UIKit/UIKit.h>
#import "../Helper/BITHockeyBaseViewController.h"
#import "BITHockeyBaseViewController.h"
@interface BITFeedbackListViewController : BITHockeyBaseViewController <UITableViewDelegate, UITableViewDataSource> {

View File

@@ -29,7 +29,7 @@
#import <Foundation/Foundation.h>
#import "../Helper/BITHockeyBaseManager.h"
#import "BITHockeyBaseManager.h"
#import "BITFeedbackListViewController.h"
#import "BITFeedbackComposeViewController.h"

View File

@@ -30,7 +30,7 @@
#import <UIKit/UIKit.h>
#import "../Helper/BITHockeyBaseManager.h"
#import "BITHockeyBaseManager.h"
typedef enum {

View File

@@ -30,7 +30,7 @@
#import <UIKit/UIKit.h>
#import "../Helper/BITHockeyBaseViewController.h"
#import "BITHockeyBaseViewController.h"
@class PSStoreButton;

View File

@@ -33,16 +33,16 @@
#import "BITHockeyManager.h"
#import "BITHockeyManagerDelegate.h"
#import "CrashReports/BITCrashManager.h"
#import "CrashReports/BITCrashManagerDelegate.h"
#import "BITCrashManager.h"
#import "BITCrashManagerDelegate.h"
#import "Update/BITUpdateManager.h"
#import "Update/BITUpdateManagerDelegate.h"
#import "Update/BITUpdateViewController.h"
#import "BITUpdateManager.h"
#import "BITUpdateManagerDelegate.h"
#import "BITUpdateViewController.h"
#import "Feedback/BITFeedbackManager.h"
#import "Feedback/BITFeedbackComposeViewController.h"
#import "Feedback/BITFeedbackListViewController.h"
#import "BITFeedbackManager.h"
#import "BITFeedbackComposeViewController.h"
#import "BITFeedbackListViewController.h"
// Notification message which HockeyManager is listening to, to retry requesting updated from the server

View File

@@ -0,0 +1,2 @@
OTHER_LDFLAGS=$(inherited) -ObjC -framework CoreGraphics -framework Foundation -framework QuartzCore -framework SystemConfiguration -weak_framework AdSupport -weak_framework UIKit
APPLEDOC_DOCSET_NAME=HockeySDK-iOS

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +1,5 @@
#include "HockeySDK.xcconfig"
BUILD_NUMBER = 6
VERSION_STRING = 2.5.4b1
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) BITHOCKEY_VERSION="@\"2.5.4b1\""