user329818
user329818

Reputation: 1

How do I include the static library for Core Plot?

According to the Core Plot Wiki:

Core Plot is built as a static library for iPhone, so you'll need to drag the libCorePlot-CocoaTouch.a static library from under the CorePlot-CocoaTouch.xcodeproj group to your target's Link Binary With Libraries folder.

I do not see the mentioned library, where might it be?

Upvotes: 0

Views: 1269

Answers (1)

Brad Larson
Brad Larson

Reputation: 170317

This is the location referred to in the integration instructions: Core Plot static library location
(source: sunsetlakesoftware.com)

This will show up as red until the library has been compiled, but you can still drag this library over to the Link Binary With Libraries build phase. If you follow the remainder of the instructions for setting this as a dependency for your application target, it will be built before your application is.

In the future, framework-specific questions like this might receive faster answers on the Core Plot mailing list.

Upvotes: 3

Related Questions