Skip to content

Commit

Permalink
Merge pull request #2950 from BrianDoig/master
Browse files Browse the repository at this point in the history
Add Swift Package Manager support.
  • Loading branch information
liuxuan30 authored Nov 8, 2017
2 parents ecba1da + 9b9dd68 commit a1811c7
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription

let package = Package(
name: "Charts",
products: [
.library(name: "Charts", type: .dynamic, targets: ["Charts"])
],
dependencies: [],
targets: [
.target(name: "Charts", dependencies: [])
],
swiftLanguageVersions: [4]
)

0 comments on commit a1811c7

Please sign in to comment.