We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4534a63 commit 6fa58d1Copy full SHA for 6fa58d1
Package.swift
@@ -154,3 +154,14 @@ var package = Package(
154
155
cxxLanguageStandard: .cxx11
156
)
157
+
158
+// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
159
+for target in package.targets {
160
+ if target.type != .plugin {
161
+ var settings = target.swiftSettings ?? []
162
+ // https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
163
+ settings.append(.enableUpcomingFeature("MemberImportVisibility"))
164
+ target.swiftSettings = settings
165
+ }
166
+}
167
+// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
0 commit comments