Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add dynamic OSX framework project #36

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
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
1,081 changes: 0 additions & 1,081 deletions Objective-Zip.xcodeproj/project.pbxproj

This file was deleted.

686 changes: 686 additions & 0 deletions ObjectiveZip.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
version = "1.7">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "50CAEF211BD7E17800619ACE"
BuildableName = "ObjectiveZip.framework"
BlueprintName = "ObjectiveZip"
ReferencedContainer = "container:ObjectiveZip.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
shouldAutocreateTestPlan = "YES">
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "50AE2BE62A31DE65004B316D"
BuildableName = "ObjectiveZipTests.xctest"
BlueprintName = "ObjectiveZipTests"
ReferencedContainer = "container:ObjectiveZip.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "50CAEF211BD7E17800619ACE"
BuildableName = "ObjectiveZip.framework"
BlueprintName = "ObjectiveZip"
ReferencedContainer = "container:ObjectiveZip.xcodeproj">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
28 changes: 28 additions & 0 deletions ObjectiveZip/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>$(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>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2015 Christian Tietze. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
32 changes: 21 additions & 11 deletions Objective-Zip/Objective-Zip.h → ObjectiveZip/ObjectiveZip.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
//
// Objective-Zip.h
// Objective-Zip v. 1.0.2
// Created by Christian Tietze on 21/10/15.
//
// Objective-Zip v. 1.0.2
// Created by Gianluca Bertani on 27/08/15.
// Copyright 2009-2015 Gianluca Bertani. All rights reserved.
//
Expand Down Expand Up @@ -31,13 +32,22 @@
// POSSIBILITY OF SUCH DAMAGE.
//

#import "OZZipFile.h"
#import "OZZipFile+Standard.h"
#import "OZZipFileMode.h"
#import "OZZipCompressionLevel.h"
#import "OZZipException.h"
#import "OZZipWriteStream.h"
#import "OZZipWriteStream+Standard.h"
#import "OZZipReadStream.h"
#import "OZZipReadStream+Standard.h"
#import "OZFileInZipInfo.h"

#import <Cocoa/Cocoa.h>

//! Project version number for ObjectiveZip.
FOUNDATION_EXPORT double ObjectiveZipVersionNumber;

//! Project version string for ObjectiveZip.
FOUNDATION_EXPORT const unsigned char ObjectiveZipVersionString[];

#import <ObjectiveZip/OZZipFile.h>
#import <ObjectiveZip/OZZipFile+NSError.h>
#import <ObjectiveZip/OZZipFileMode.h>
#import <ObjectiveZip/OZZipCompressionLevel.h>
#import <ObjectiveZip/OZZipException.h>
#import <ObjectiveZip/OZZipWriteStream.h>
#import <ObjectiveZip/OZZipWriteStream+NSError.h>
#import <ObjectiveZip/OZZipReadStream.h>
#import <ObjectiveZip/OZZipReadStream+NSError.h>
#import <ObjectiveZip/OZFileInZipInfo.h>
File renamed without changes.
Loading