Reputation: 21
I want to add one existing project into my new project. I have added if using "Add files to "Project".
When I'm going to import it's .h
file in my new .h
file. It say file not found.
I have tried to add Path for Header file in Header Search Path in Search Path. But I don't know how.
Upvotes: 1
Views: 1188
Reputation: 4249
Suppose u have included a third party library or files say "JSONKit" whose path is outside the project folder and have added in your project then you have to specify that particular folder path in your header search path,else you will get an error.below is an example of it
Upvotes: 1