Skip to content

Commit

Permalink
Add Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
tattn committed Dec 7, 2018
1 parent d1eb167 commit 4b8ac42
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Temporary Items

## Build generated
build/
.build/
DerivedData/

## Various settings
Expand Down
18 changes: 18 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// swift-tools-version:4.0
import PackageDescription

let package = Package(
name: "MoreCodable",
products: [
.library(name: "MoreCodable", targets: ["MoreCodable"]),
],
dependencies: [],
targets: [
.target(
name: "MoreCodable",
path: "Sources/",
exclude: []
)
],
swiftLanguageVersions: [4]
)

0 comments on commit 4b8ac42

Please sign in to comment.