Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: objective-c
xcode_project: ObjectMapping/OHMKit.xcodeproj
xcode_project: OHMKit.xcodeproj
xcode_scheme: ObjectMapping
xcode_sdk:
- iphonesimulator7.0
Expand Down
28 changes: 28 additions & 0 deletions OHMKit-OSX/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?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>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.fabiancanas.$(PRODUCT_NAME:rfc1034identifier)</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>0.2.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2015 Fabian Canas. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
14 changes: 14 additions & 0 deletions OHMKit-OSX/OHMKit-OSX.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// OHMKit-OSX.h
// OHMKit-OSX
//
// Created by Fabian Canas on 2/13/15.
// Copyright (c) 2015 Fabian Canas. All rights reserved.
//

#import <Cocoa/Cocoa.h>

FOUNDATION_EXPORT double OHMKit_OSXVersionNumber;
FOUNDATION_EXPORT const unsigned char OHMKit_OSXVersionString[];

#import <OHMKit/OHMKit.h>
26 changes: 26 additions & 0 deletions OHMKit-iOS/Info.plist
Original file line number Diff line number Diff line change
@@ -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>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.fabiancanas.$(PRODUCT_NAME:rfc1034identifier)</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>0.2.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
15 changes: 15 additions & 0 deletions OHMKit-iOS/OHMKit-iOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// OHMKit-iOS.h
// OHMKit-iOS
//
// Created by Fabian Canas on 2/13/15.
// Copyright (c) 2015 Fabian Canas. All rights reserved.
//

#import <UIKit/UIKit.h>

FOUNDATION_EXPORT double OHMKit_iOSVersionNumber;
FOUNDATION_EXPORT const unsigned char OHMKit_iOSVersionString[];

#import <OHMKit/OHMKit.h>

Loading