Skip to content

Commit

Permalink
add carthage support
Browse files Browse the repository at this point in the history
  • Loading branch information
west0r committed Mar 12, 2017
1 parent fa26274 commit 799fcad
Show file tree
Hide file tree
Showing 4 changed files with 409 additions and 1 deletion.
26 changes: 26 additions & 0 deletions 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>en</string>
<key>CFBundleDisplayName</key>
<string>JNWSpringAnimation</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>
</dict>
</plist>
2 changes: 1 addition & 1 deletion JNWSpringAnimation.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "JNWSpringAnimation"
s.version = "0.7.1"
s.version = "0.7.2"
s.summary = "JNWSpringAnimation is a subclass of CAKeyframeAnimation that adds support for creating damped harmonic animations."
s.homepage = "https://github.com/jwilling/JNWSpringAnimation"
s.license = 'MIT'
Expand Down
302 changes: 302 additions & 0 deletions JNWSpringAnimation.xcodeproj/project.pbxproj
@@ -0,0 +1,302 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
A2DABBAE1E75636900BC19ED /* JNWSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = A2DABBAD1E75636900BC19ED /* JNWSpringAnimation.m */; };
A2DABBB01E75639100BC19ED /* JNWSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A2DABBAF1E75639100BC19ED /* JNWSpringAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
A2DABBA21E75633800BC19ED /* JNWSpringAnimation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = JNWSpringAnimation.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A2DABBA61E75633800BC19ED /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A2DABBAD1E75636900BC19ED /* JNWSpringAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JNWSpringAnimation.m; sourceTree = SOURCE_ROOT; };
A2DABBAF1E75639100BC19ED /* JNWSpringAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JNWSpringAnimation.h; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
A2DABB9E1E75633800BC19ED /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
A2DABB981E75633800BC19ED = {
isa = PBXGroup;
children = (
A2DABBA41E75633800BC19ED /* JNWSpringAnimation */,
A2DABBA31E75633800BC19ED /* Products */,
);
sourceTree = "<group>";
};
A2DABBA31E75633800BC19ED /* Products */ = {
isa = PBXGroup;
children = (
A2DABBA21E75633800BC19ED /* JNWSpringAnimation.framework */,
);
name = Products;
sourceTree = "<group>";
};
A2DABBA41E75633800BC19ED /* JNWSpringAnimation */ = {
isa = PBXGroup;
children = (
A2DABBAF1E75639100BC19ED /* JNWSpringAnimation.h */,
A2DABBAD1E75636900BC19ED /* JNWSpringAnimation.m */,
A2DABBA61E75633800BC19ED /* Info.plist */,
);
path = JNWSpringAnimation;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
A2DABB9F1E75633800BC19ED /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
A2DABBB01E75639100BC19ED /* JNWSpringAnimation.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
A2DABBA11E75633800BC19ED /* JNWSpringAnimation */ = {
isa = PBXNativeTarget;
buildConfigurationList = A2DABBAA1E75633800BC19ED /* Build configuration list for PBXNativeTarget "JNWSpringAnimation" */;
buildPhases = (
A2DABB9D1E75633800BC19ED /* Sources */,
A2DABB9E1E75633800BC19ED /* Frameworks */,
A2DABB9F1E75633800BC19ED /* Headers */,
A2DABBA01E75633800BC19ED /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = JNWSpringAnimation;
productName = JNWSpringAnimation;
productReference = A2DABBA21E75633800BC19ED /* JNWSpringAnimation.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
A2DABB991E75633800BC19ED /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0820;
TargetAttributes = {
A2DABBA11E75633800BC19ED = {
CreatedOnToolsVersion = 8.2.1;
DevelopmentTeam = 5PHGGKL9UQ;
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = A2DABB9C1E75633800BC19ED /* Build configuration list for PBXProject "JNWSpringAnimation" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = A2DABB981E75633800BC19ED;
productRefGroup = A2DABBA31E75633800BC19ED /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
A2DABBA11E75633800BC19ED /* JNWSpringAnimation */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
A2DABBA01E75633800BC19ED /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
A2DABB9D1E75633800BC19ED /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
A2DABBAE1E75636900BC19ED /* JNWSpringAnimation.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
A2DABBA81E75633800BC19ED /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
A2DABBA91E75633800BC19ED /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
A2DABBAB1E75633800BC19ED /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "";
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 5PHGGKL9UQ;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "$(SRCROOT)/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.AppJon.JNWSpringAnimation;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
};
name = Debug;
};
A2DABBAC1E75633800BC19ED /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "";
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 5PHGGKL9UQ;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "$(SRCROOT)/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.AppJon.JNWSpringAnimation;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
A2DABB9C1E75633800BC19ED /* Build configuration list for PBXProject "JNWSpringAnimation" */ = {
isa = XCConfigurationList;
buildConfigurations = (
A2DABBA81E75633800BC19ED /* Debug */,
A2DABBA91E75633800BC19ED /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
A2DABBAA1E75633800BC19ED /* Build configuration list for PBXNativeTarget "JNWSpringAnimation" */ = {
isa = XCConfigurationList;
buildConfigurations = (
A2DABBAB1E75633800BC19ED /* Debug */,
A2DABBAC1E75633800BC19ED /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = A2DABB991E75633800BC19ED /* Project object */;
}

0 comments on commit 799fcad

Please sign in to comment.