I have imported a lot of files with ARC into non-ARC iOS xCode project. There are also multiple targets in this project. So I need to add -fobjc-arc
flags manually for each file in each target (in the opposite case it will be just another flag - -fno-objc-arc
).
Could you advice a way how to make this process faster/semi-automatically? For example, is it possible to set flag for multiple files at once or to set flag for one file but for multiple targets?