Skip to content

Commit

Permalink
Restructure for SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
acwright committed Jun 4, 2019
1 parent 39e20f5 commit 8e346b4
Show file tree
Hide file tree
Showing 46 changed files with 199 additions and 244 deletions.
36 changes: 36 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// swift-tools-version:5.0
//
// Package.swift
// Lumber
//
// Created by Aaron Wright on 5/1/18.
// Copyright © 2018 Aaron Wright. All rights reserved.
//

import PackageDescription

let package = Package(
name: "Token",
platforms: [
.macOS(.v10_12),
.iOS(.v10),
.tvOS(.v10),
.watchOS(.v3)
],
products: [
.library(
name: "Token",
targets: ["Token"])
],
targets: [
.target(
name: "Token",
path: "Sources"),
.testTarget(
name: "TokenTests",
dependencies: ["Token"],
path: "Tests"),
],
swiftLanguageVersions: [.v5]
)

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.
2 changes: 1 addition & 1 deletion Token/Info.plist → Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.4.6</string>
<string>1.4.7</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Token/Token.h → Sources/Token.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2017 Aaron Wright. All rights reserved.
//

#import <Cocoa/Cocoa.h>
@import Foundation;

//! Project version number for Token.
FOUNDATION_EXPORT double TokenVersionNumber;
Expand Down
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
268 changes: 156 additions & 112 deletions Token.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
<key>orderHint</key>
<integer>2</integer>
</dict>
<key>TokenWatch.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>3</integer>
</dict>
</dict>
</dict>
</plist>
24 changes: 0 additions & 24 deletions TokenMobile/Info.plist

This file was deleted.

19 changes: 0 additions & 19 deletions TokenMobile/TokenMobile.h

This file was deleted.

24 changes: 0 additions & 24 deletions TokenTV/Info.plist

This file was deleted.

19 changes: 0 additions & 19 deletions TokenTV/TokenTV.h

This file was deleted.

22 changes: 0 additions & 22 deletions TokenTVTests/Info.plist

This file was deleted.

22 changes: 0 additions & 22 deletions TokenTests/Info.plist

This file was deleted.

0 comments on commit 8e346b4

Please sign in to comment.