Only apply standard swift settings on valid targets (#48)

Only apply standard swift settings on valid targets. The current check
ignores plugins but that is not comprehensive enough.
This commit is contained in:
Rick Newton-Rogers
2025-03-14 10:17:37 +00:00
committed by GitHub
parent 93b188b6d6
commit a9707bbc51
+4 -1
View File
@@ -54,11 +54,14 @@ let package = Package(
// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
for target in package.targets {
if target.type != .plugin {
switch target.type {
case .regular, .test, .executable:
var settings = target.swiftSettings ?? []
// https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
settings.append(.enableUpcomingFeature("MemberImportVisibility"))
target.swiftSettings = settings
case .macro, .plugin, .system, .binary: () // not applicable
@unknown default: () // we don't know what to do here, do nothing
}
}
// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //