I\'m attempting to add ZipArchive to my project following the WikiPage. I\'ve added it to my project and attempted to build, but now NSObjRuntime.h, NSObject.h and countles
The issue is probably caused by Objective-C in your C files. This could be caused by imports in your PCH. You need to wrap these in a #ifdef __OBJC__
#ifdef __OBJC__
i.e.
#ifdef __OBJC__ #import "SomeObjecitveCFile.h" #endif