Cocoa Project: Framework Not Found error

I added a reference to Quartz and other Quartz libraries. PDFKit is what I needed. Now when I compile, I get the following error. Any ideas how to get past it?

Error 123 (Link) ld: framework not found Quartz.ImageKit

C:\Program Files (x86)\MSBuild\RemObjects Software\Oxygene\RemObjects.Oxygene.Nougat.targets	338	5	Starlite Costumer

In my project.oxygene file, the references are there:

<Reference Include="Quartz.PDFKit.fx" />

I thought adding the HintPath would help but still get the link error. Not sure how to get a pdf view to work in my osx program.

<Reference Include="Quartz.PDFKit.fx">
  <HintPath>C:\Program Files (x86)\RemObjects Software\Oxygene\Nougat\SDKs\OS X 10.9\Quartz.PDFKit.fx</HintPath>
</Reference>

What happens if you JUST reference Quartz (not .*) ?

Alright!
Add reference to Quartz to project.
Add Quartz.PDFKit to uses.
All works so far.

Checking “Quartz.PDFKit” in the project references causes failure.

BTW: Unchecking a reference to any of the items does not remove it from the *.oxygene file. I had to remove those lines manually in a text editor.

You can remove them by removing them from the References/ node in the IDE. Glad that works though. I’ll look into how to best fix this