Reply To: Project can find the OpenEars framework headers, but not Slt :-(

Home Forums OpenEars Project can find the OpenEars framework headers, but not Slt :-( Reply To: Project can find the OpenEars framework headers, but not Slt :-(

#1018634
Claude
Participant

Sure!

Xcode does a little too much sometimes when showing you your search paths, it is hard to sometimes see exactly what is “under the hood” so I use a basic text editor for those difficult cases. I use BBEdit BTW, great product!

In the Finder, right click on your Xcode project and select “Show Package Contents.” This will open the Xcode project file bundle. Drag project.pbxproj to your text editor.

Search for PolitePix until you find some lines that look something like this:

“\\\”$(SRCROOT)/../externals/OtherCompany/OtherFramework\\\””,
“/Users/claude/Documents/myproject/workspaces/externals/politepix/OpenEars”,

(Note, you may have even more backslashes if you added more than one framework.) This is wrong. Change it to look like this:

“\”$(SRCROOT)/../externals/externals/OtherCompany/OtherFramework\””,
“\”$(SRCROOT)/../externals/politepix/OpenEars\””,

You’ll have 2 sections like this to fix and of course your local paths will likely be different than mine! You should now be able to find your old frameworks.