Skip to content

Commit af0e16e

Browse files
authored
Merge pull request #87 from Adyen/no-verify-emitted-module-interface
Adding `OTHER_SWIFT_FLAGS=-no-verify-emitted-module-interface`
2 parents 99f3c46 + 80f7ae1 commit af0e16e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Sources/PublicModules/PADProjectBuilder/SwiftInterfaceProducer/XcodeTools.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ struct XcodeTools {
5757
"cd \(projectDirectoryPath);",
5858
"xcodebuild clean build -scheme \"\(scheme)\"",
5959
"-derivedDataPath \(Constants.derivedDataPath)",
60-
"BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
60+
"BUILD_LIBRARY_FOR_DISTRIBUTION=YES",
61+
"OTHER_SWIFT_FLAGS=-no-verify-emitted-module-interface"
6162
]
6263

6364
switch platform {

Tests/UnitTests/XcodeToolsTests.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ private extension XcodeToolsTests {
6161
var commandComponents = [
6262
"cd \(projectDirectoryPath);",
6363
"xcodebuild clean build -scheme \"\(scheme)\"",
64-
"-derivedDataPath .build BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
64+
"-derivedDataPath .build BUILD_LIBRARY_FOR_DISTRIBUTION=YES",
65+
"OTHER_SWIFT_FLAGS=-no-verify-emitted-module-interface"
6566
]
6667

6768
switch platform {

0 commit comments

Comments
 (0)