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

Package added #99

Open
wants to merge 3 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
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 16 additions & 7 deletions MZTimerLabel.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
40A965091AD4CA9F00B2D499 = {
isa = PBXGroup;
children = (
40A9651C1AD4CB5F00B2D499 /* MZTimerLabel */,
40A9651C1AD4CB5F00B2D499 /* Source */,
40A9651B1AD4CB5F00B2D499 /* Products */,
);
sourceTree = "<group>";
Expand All @@ -64,14 +64,13 @@
name = Products;
sourceTree = "<group>";
};
40A9651C1AD4CB5F00B2D499 /* MZTimerLabel */ = {
40A9651C1AD4CB5F00B2D499 /* Source */ = {
isa = PBXGroup;
children = (
40A965111AD4CAF500B2D499 /* MZTimerLabel.h */,
40A965121AD4CAF500B2D499 /* MZTimerLabel.m */,
6A49F33A27A2B0D200DF671B /* MZTimerLabel */,
40A9651D1AD4CB5F00B2D499 /* Supporting Files */,
);
path = MZTimerLabel;
path = Source;
sourceTree = "<group>";
};
40A9651D1AD4CB5F00B2D499 /* Supporting Files */ = {
Expand All @@ -82,6 +81,15 @@
name = "Supporting Files";
sourceTree = "<group>";
};
6A49F33A27A2B0D200DF671B /* MZTimerLabel */ = {
isa = PBXGroup;
children = (
40A965111AD4CAF500B2D499 /* MZTimerLabel.h */,
40A965121AD4CAF500B2D499 /* MZTimerLabel.m */,
);
name = MZTimerLabel;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
Expand Down Expand Up @@ -153,6 +161,7 @@
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
);
mainGroup = 40A965091AD4CA9F00B2D499;
Expand Down Expand Up @@ -261,7 +270,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_FILE = MZTimerLabel/Info.plist;
INFOPLIST_FILE = Source/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand Down Expand Up @@ -309,7 +318,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_FILE = MZTimerLabel/Info.plist;
INFOPLIST_FILE = Source/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?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>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
21 changes: 21 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import PackageDescription

let package = Package(
name: "MZTimerLabel",
platforms: [
.iOS(.v10),
],
products: [
.library(
name: "MZTimerLabel",
targets: ["MZTimerLabel"]),
],
dependencies: [
// no dependencies
],
targets: [
.target(
name: "MZTimerLabel",
dependencies: []),
]
)
File renamed without changes.
1 change: 1 addition & 0 deletions MZTimerLabel/MZTimerLabel.h → Source/MZTimerLabel.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

//
// MZTimerLabel.h
// Version 0.5.1
Expand Down
File renamed without changes.