Skip to content

Commit

Permalink
fix(playground): apply workaround for Xcode 15.
Browse files Browse the repository at this point in the history
  • Loading branch information
asafkorem committed Mar 20, 2024
1 parent 5ad1fda commit 48198ce
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions playground/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ def __apply_Xcode_15_3_flipper_post_install_workaround(installer)
end
end

def __apply_Xcode_15_unary_binary_error_workaround(installer)
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION']
end
end
end

target 'playground' do
all_pods
end
Expand Down

0 comments on commit 48198ce

Please sign in to comment.