Shantanu
Shantanu

Reputation: 3136

minizip/unzip.h file not found

I am making an app which zips/unzips files into documents directory using the SSZipArchive from this following github link. Then I added the following to my Xcode project,

  1. Add SSZipArchive.h, SSZipArchive.m, and minizip to your project.
  2. Add the libz library to your target

Added the necessary code in my project to zip the file, but I am getting the following lexical or preprocessor issue "minizip/unzip.h file not found". I am using Xcode 4.6.

Upvotes: 1

Views: 4234

Answers (1)

Javier Quevedo
Javier Quevedo

Reputation: 2046

Perhaps you forgot to add the minizip folder to the project?

enter image description here

Upvotes: -1

Related Questions