MagickWand has recently changed the paths to the headers. You may have to modify the source code to use the "alternative" path.
If your sample contains the following lines:
#if defined(SCANDIT_MAGICK_WAND_IS_OLDER_THAN_VERSION_7)
# include <wand/magick-wand.h>
#else
# include <MagickWand/MagickWand.h>
#endif
If you are using a version older than 7, you can either:
- pass `-DSCANDIT_MAGICK_WAND_IS_OLDER_THAN_VERSION_7` to the compiler
- add `#define SCANDIT_MAGICK_WAND_IS_OLDER_THAN_VERSION_7` just above the `#if defined(...)` line