-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaced swiftLanguageVersions with swiftLanguageModes for Swift 6 on…
…wards
- Loading branch information
Antonio Strijdom
committed
Sep 27, 2024
1 parent
351fae7
commit 5cc1bef
Showing
7 changed files
with
109 additions
and
5 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
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
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,75 @@ | ||
// swift-tools-version: 6.0 | ||
|
||
// This file was automatically generated by PackageGenerator and untracked | ||
// PLEASE DO NOT EDIT MANUALLY | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Example", | ||
defaultLocalization: "en", | ||
platforms: [ | ||
.iOS(.v15), | ||
.macOS(.v13), | ||
], | ||
products: [ | ||
.library( | ||
name: "Example", | ||
targets: ["Example"] | ||
), | ||
], | ||
dependencies: [ | ||
.package( | ||
path: "../MyFrameworks" | ||
), | ||
.package( | ||
url: "https://github.com/DependencyA", | ||
exact: "1.0.0" | ||
), | ||
.package( | ||
url: "https://github.com/DependencyB", | ||
exact: "2.0.0" | ||
), | ||
.package( | ||
url: "https://github.com/DependencyC", | ||
revision: "abcde1235kjh" | ||
), | ||
], | ||
targets: [ | ||
.target( | ||
name: "Example", | ||
dependencies: [ | ||
.product(name: "RemoteDependencyA", package: "RemoteDependencyA"), | ||
.target(name: "LocalXCFramework"), | ||
], | ||
path: "Framework/Sources", | ||
resources: [ | ||
.process("Resources") | ||
], | ||
plugins: [ | ||
] | ||
), | ||
.testTarget( | ||
name: "UnitTests", | ||
dependencies: [ | ||
.byName(name: "Example"), | ||
.product(name: "RemoteDependencyB", package: "RemoteDependencyB"), | ||
.target(name: "LocalXCFramework"), | ||
], | ||
path: "Tests/Sources", | ||
resources: [ | ||
.process("Resources") | ||
], | ||
plugins: [ | ||
] | ||
), | ||
.binaryTarget( | ||
name: "LocalXCFramework", | ||
path: "../LocalXCFramework.xcframework" | ||
), | ||
], | ||
swiftLanguageModes: [ | ||
.version("5.10"), | ||
.version("6.0"), | ||
] | ||
) |
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
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
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
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