Skip to content

Update requirements in Package.swift to match SwiftPM #416

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.5
// swift-tools-version:5.7

/*
This source file is part of the Swift.org open source project
Expand All @@ -18,7 +18,7 @@ let macOSPlatform: SupportedPlatform
if let deploymentTarget = ProcessInfo.processInfo.environment["SWIFTTSC_MACOS_DEPLOYMENT_TARGET"] {
macOSPlatform = .macOS(deploymentTarget)
} else {
macOSPlatform = .macOS(.v10_13)
macOSPlatform = .macOS(.v10_15)
}

let CMakeFiles = ["CMakeLists.txt"]
Expand All @@ -27,6 +27,7 @@ let package = Package(
name: "swift-tools-support-core",
platforms: [
macOSPlatform,
.iOS(.v15)
],
products: [
.library(
Expand Down