AlexR
AlexR

Reputation: 5634

Xcode Warning: "no rule to process file" and "Directory not found"

After renaming my project folder I get the following error messages:

    Warning: no rule to process file '/Users/cs/Documents/Xcode/Prototype/Prototype/Settings.bundle' 
of type wrapper.plug-in for architecture i386

    Warning: no rule to process file '/Users/cs/Documents/Xcode/Prototype/Prototype/DDMathParser/DDMathParser.h' 
of type sourcecode.c.h for architecture i386

    Warning: no rule to process file '/Users/cs/Documents/Xcode/Prototype/Prototype/AFNetworking/AFURLConnectionOperation.h' 
of type sourcecode.c.h for architecture i386

Directory not found for option '-L"/Users/cs/Documents/Xcode/Prototype/Prototype/../../../FacebookSDK/FacebookSDK.framework"

Any idea on what might be wrong?

Upvotes: 7

Views: 8104

Answers (1)

slecorne
slecorne

Reputation: 1718

Concerning the 3 first warning, you may check in XCode in the "Build Phases" inside your project settings that the header files do not appear inside the "Compile Sources" list.

enter image description here

Upvotes: 14

Related Questions