-
Notifications
You must be signed in to change notification settings - Fork 798
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #498 from JosephDuffy/master
Fix Xcode 12 warning when depending on Swift package
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | ||
] | ||
) |