This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
forked from imaginary-cloud/CameraManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated to swift 5 - also provided new Swift Package description
- Loading branch information
Philipp Homann
authored and
Philipp Homann
committed
Sep 22, 2020
1 parent
5205db3
commit 08c28d2
Showing
3 changed files
with
41 additions
and
20 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,26 @@ | ||
// Package.swift | ||
// | ||
// Copyright © 2017 ImaginaryCloud, imaginarycloud.com. This library is licensed under the MIT license. | ||
|
||
// swift-tools-version:5.3 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "CameraManager", | ||
targets: [ | ||
Target(name: "camera", dependencies: [.Target(name: "CameraManager")]) | ||
] | ||
name: "CameraManager", | ||
defaultLocalization: "en", | ||
platforms: [ | ||
.iOS(.v10) | ||
], | ||
products: [ | ||
.library( | ||
name: "CameraManager", | ||
targets: ["CameraManager"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target( | ||
name: "CameraManager", | ||
dependencies: [], | ||
path: "camera", | ||
sources: ["CameraManager.swift"] | ||
) | ||
], | ||
swiftLanguageVersions: [.v5] | ||
) |
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