Does this setup seem correct to get precompiled headers? When I look at the file compile times they're way too long, like it's not using the pch.
App.pch file, I set #include "MyConfig.h"
Then in Build Settings: GCC_PREFIX_HEADER = pathto/App.pch GCC_PRECOMPILE_PREFIX_HEADER = YES
Force include of a header. This avoids needing to include the header first in every file.
-include MyConfig.h
or should it be? -include App.pch