Skip to content

Commit e5e447f

Browse files
committed
Enable MemberImportVisibility check on all targets
1 parent 3ee8d53 commit e5e447f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Package.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,9 @@ let package = Package(
144144
],
145145
cxxLanguageStandard: .cxx14
146146
)
147+
148+
for target in package.targets {
149+
var settings = target.swiftSettings ?? []
150+
settings.append(.enableUpcomingFeature("MemberImportVisibility"))
151+
target.swiftSettings = settings
152+
}

0 commit comments

Comments
 (0)