Skip to content

Commit

Permalink
Merge pull request #498 from JosephDuffy/master
Browse files Browse the repository at this point in the history
Fix Xcode 12 warning when depending on Swift package
  • Loading branch information
kishikawakatsumi authored Sep 18, 2020
2 parents b00f91d + 1f0a9ef commit 6775ebb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Package@swift-5.3.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version:5.3

// Package.swift
// KeychainAccess
//
// Created by kishikawa katsumi on 2015/12/4.
// Copyright (c) 2015 kishikawa katsumi. All rights reserved.
//

import PackageDescription

let package = Package(
name: "KeychainAccess",
platforms: [
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
],
products: [
.library(name: "KeychainAccess", targets: ["KeychainAccess"])
],
targets: [
.target(name: "KeychainAccess", path: "Lib/KeychainAccess")
]
)

0 comments on commit 6775ebb

Please sign in to comment.