bmiller3
(bmiller3)
January 29, 2015, 10:29pm
1
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
bmiller3
(bmiller3)
January 30, 2015, 1:45pm
2
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>
ck
(Carlo Kok)
January 30, 2015, 2:16pm
3
What happens if you JUST reference Quartz (not .*) ?
bmiller3
(bmiller3)
January 30, 2015, 3:17pm
4
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.
ck
(Carlo Kok)
January 30, 2015, 3:18pm
5
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