Skip to content

Commit

Permalink
Fix targets for iOS, watchOS, and tvOS frameworks.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankrausch committed Oct 25, 2017
1 parent d558d8c commit 8f8916e
Show file tree
Hide file tree
Showing 10 changed files with 627 additions and 18 deletions.
26 changes: 26 additions & 0 deletions Typographizer-iOS/Info.plist
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2017 Frank Rausch. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions Typographizer-iOS/Typographizer.h
@@ -0,0 +1,19 @@
//
// Typographizer.h
// Typographizer
//
// Created by Frank Rausch on 2017-10-25.
// Copyright © 2017 Frank Rausch. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for Typographizer.
FOUNDATION_EXPORT double TypographizerVersionNumber;

//! Project version string for Typographizer.
FOUNDATION_EXPORT const unsigned char TypographizerVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <Typographizer_iOS/PublicHeader.h>


File renamed without changes.
File renamed without changes.
26 changes: 26 additions & 0 deletions Typographizer-tvOS/Info.plist
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2017 Frank Rausch. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions Typographizer-tvOS/Typographizer.h
@@ -0,0 +1,19 @@
//
// Typographizer.h
// Typographizer
//
// Created by Frank Rausch on 2017-10-25.
// Copyright © 2017 Frank Rausch. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for Typographizer.
FOUNDATION_EXPORT double TypographizerVersionNumber;

//! Project version string for Typographizer.
FOUNDATION_EXPORT const unsigned char TypographizerVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <Typographizer_tvOS/PublicHeader.h>


26 changes: 26 additions & 0 deletions Typographizer-watchOS/Info.plist
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2017 Frank Rausch. All rights reserved.</string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions Typographizer-watchOS/Typographizer.h
@@ -0,0 +1,19 @@
//
// Typographizer.h
// Typographizer
//
// Created by Frank Rausch on 2017-10-25.
// Copyright © 2017 Frank Rausch. All rights reserved.
//

#import <WatchKit/WatchKit.h>

//! Project version number for Typographizer.
FOUNDATION_EXPORT double TypographizerVersionNumber;

//! Project version string for Typographizer.
FOUNDATION_EXPORT const unsigned char TypographizerVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <Typographizer_watchOS/PublicHeader.h>


0 comments on commit 8f8916e

Please sign in to comment.