We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f1e8cc commit 85eaf11Copy full SHA for 85eaf11
1 file changed
ci/ios/Podfile
@@ -56,5 +56,18 @@ target 'ci' do
56
:mac_catalyst_enabled => false
57
)
58
__apply_Xcode_12_5_M1_post_install_workaround(installer)
59
+
60
+ installer.pods_project.build_configurations.each do |config|
61
+ installer.pods_project.targets.each do |target|
62
+ if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
63
+ config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
64
+ end
65
66
67
+ # Set the preprocessing macro for the whole Pods project
68
+ existing_flags = config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
69
+ existing_flags << '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION'
70
+ config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] = existing_flags
71
72
end
73
0 commit comments