chrisjr
chrisjr

Reputation: 770

Xcode falsely states "Cloud.h" doesn't exist

I'm creating an app that uses CloudApp. I am using "TestHarness" in order to see what to expect when I import it into my app. The problem is, Xcode is continuously saying "'Cloud.h' file not found", when, in fact, it is in the directory. To see what I'm talking about, click here.

I've tried to find anything similar to my question and have either found nothing or it may or may not even be remotely close to what I'm asking for and it was for a lower version of Xcode (I'm using Xcode 4.2, as you can see in the picture).

I'll appreciate any help that I can get. Thanks in advance.

Upvotes: 0

Views: 641

Answers (2)

Niko
Niko

Reputation: 2543

you need to add the path to the CloudApp header file in the application:

  • select the target,
  • go to 'Build Settings',
  • 'Header Search Paths'

(might need to check 'Recursive path').

Upvotes: 0

Evan Mulawski
Evan Mulawski

Reputation: 55334

You need to use:

#import "Cloud/Cloud.h"

Upvotes: 1

Related Questions