We use protobufs in our project. I've have a rule to process .proto files, which generates .h and .cc files, which are then compiled and linked automatically by Xcode.
I chose to put those files in Build/Intermediates/protoc.generated. I did this because they are not per-architecture files; they don't need to be re-built for each architecture that might compile. It might be okay if I did build them multiple times, but I wanted to avoid any unnecessary work (which might trigger re-compiling much of the project). However, the basic "Clean" command in Xcode doesn't appear to delete that generated directory. Is there any way to get it to do so on clean? -- Rick Mann [email protected] _______________________________________________ Do not post admin requests to the list. They will be ignored. Xcode-users mailing list ([email protected]) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com This email sent to [email protected]
