We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cb92f3 commit 8aaabe9Copy full SHA for 8aaabe9
1 file changed
Package.swift
@@ -1,13 +1,13 @@
1
-//
2
-// Package.swift
3
-// SwiftState
4
5
-// Created by Yasuhiro Inami on 2015-12-05.
6
-// Copyright © 2015 Yasuhiro Inami. All rights reserved.
7
8
-
+// swift-tools-version:5.1
9
import PackageDescription
10
11
let package = Package(
12
- name: "SwiftState"
+ name: "SwiftState",
+ platforms: [.iOS(.v11)],
+ products: [
+ .library(name: "SwiftState", targets: ["SwiftState"])
+ ],
+ targets: [
+ .target(name: "SwiftState", path: "Sources")
+ ]
13
)
0 commit comments