views:

231

answers:

2

I'm looking for an Xcode project file that will let me trivially build a dynamic framework for libpng to embed in a Mac OS X application bundle. I found this project for libpng 1.2.8, but I need something reasonably current. I can make the project file myself, but I'd rather not reinvent the wheel if I don't have to. Does this already exist, and if so, where?

+1  A: 

Check out the KyngChaos UnixImageIO framework. It includes libpng.

Ned Deily
A: 

If you download the libpng framework code from http://www.libpng.org/pub/png/libpng.html it contains an xcode project that builds the framework.

Andrew Cain