xcode shows error “magick/magick-config.h” file not found

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
webmastx
Posts: 1
Joined: 2013-03-28T02:48:35-07:00
Authentication code: 6789

xcode shows error “magick/magick-config.h” file not found

Post by webmastx »

I'm using ImageMagick for my iphone app and it's working perfect on Devices and Simulator but when I tried archiving it,Xcode show me an error "magick/magick-config.h" file not found" in MagickWand.h file.

Code: Select all

#if !defined(_MAGICKWAND_CONFIG_H)
# define _MAGICKWAND_CONFIG_H
# if !defined(vms) && !defined(macintosh)
#  include "magick/magick-config.h"            <<<<<<<<< This line error
#  else
#  include "magick-config.h" 
# endif
Thank you.
broucaries
Posts: 467
Joined: 2008-12-21T11:51:10-07:00

Re: xcode shows error “magick/magick-config.h” file not foun

Post by broucaries »

Do you use pkgconfig in order to configure compilation of imagemagick or do you hardcode path (-I or -L compiler option)

Please use pkgconfig and post your makefile
Post Reply