kstenerud / iOS-Universal-Framework

An XCode project template to build universal frameworks (arm7, arm7s, and simulator) for iOS / iPhone.
2.95k stars 474 forks source link

real framework as dependency of real framework #180

Open IronSight87 opened 10 years ago

IronSight87 commented 10 years ago

Hi guys,

I have the following dependencies of real frameworks within my project:

- A.framework
-- B.framework
-- C.framework
--- B.framework

With this target dependency setup I receive the following error:

fatal error: file '/Users/.../Headers/VFCompletionBlock.h' has been modified since the precompiled header '/var/folders/3g/.../Project-Prefix.pch.pch' was built

I tried to clean and built the project several times. What could be reason of this problem? Thanks!

gokhanbarisaker commented 10 years ago

Try removing "VFCompletionBlock.h" from pch file. Then clean and build project (you should ignore compiler errors for now).

Now the pre-compiled file removed, you can easily add "VFCompletionBlock.h" to pch file again.