Skip to content

Commit

Permalink
Improved framework: enabled modules
Browse files Browse the repository at this point in the history
  • Loading branch information
chbeer committed Oct 23, 2015
1 parent 44e32f0 commit eecc7aa
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
7 changes: 4 additions & 3 deletions CBCoreTextKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer";
COMBINE_HIDPI_IMAGES = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
FRAMEWORK_VERSION = A;
Expand All @@ -751,9 +752,8 @@
GCC_PREFIX_HEADER = "CBCoreTextKit/CBCoreTextKit-Prefix.pch";
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
INFOPLIST_FILE = "CBCoreTextKit/CBCoreTextKit-Info.plist";
INSTALL_PATH = "@executable_path/../Frameworks";
INSTALL_PATH = "@executable_path/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = de.chbeer.ios.CBCoreTextKit;
PRODUCT_NAME = CBCoreTextKit;
SDKROOT = iphoneos;
Expand All @@ -768,6 +768,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
COMBINE_HIDPI_IMAGES = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
FRAMEWORK_VERSION = A;
Expand All @@ -776,7 +777,7 @@
GCC_PREFIX_HEADER = "CBCoreTextKit/CBCoreTextKit-Prefix.pch";
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
INFOPLIST_FILE = "CBCoreTextKit/CBCoreTextKit-Info.plist";
INSTALL_PATH = "@executable_path/../Frameworks";
INSTALL_PATH = "@executable_path/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
PRODUCT_BUNDLE_IDENTIFIER = de.chbeer.ios.CBCoreTextKit;
PRODUCT_NAME = CBCoreTextKit;
Expand Down
1 change: 1 addition & 0 deletions CBCoreTextKit/CBCTKGlobals.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#if TARGET_OS_IPHONE

#import <CoreText/CoreText.h>
#import <UIKit/UIKit.h>

typedef UIColor CBColor;
typedef UIFont CBFont;
Expand Down
8 changes: 8 additions & 0 deletions CBCoreTextKit/CBCoreTextKit.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,16 @@

#import <Foundation/Foundation.h>

//! Project version number for CBCoreTextKit.
FOUNDATION_EXPORT double CBCoreTextKitVersionNumber;

//! Project version string for CBCoreTextKit.
FOUNDATION_EXPORT const unsigned char CBCoreTextKitVersionString[];


#if TARGET_OS_IPHONE

#import <UIKit/UIKit.h>
#import <CoreText/CoreText.h>

#endif
Expand Down

0 comments on commit eecc7aa

Please sign in to comment.