Files
CMake/Tests/FindImageMagick/Test/main_magick++.cxx
T
hstejas 1bba218214 FindImageMagick: Define targets for specific components
- With this change we can use e.g. ImageMagick::Magick++ directly
  in targt_link_libraries.
- This change also adds CFLAGS which was missing before.
- Also adds example on how to use the targets.
2023-01-27 10:33:10 -05:00

11 lines
121 B
C++

#include <iostream>
#include <string>
#include <Magick++.h>
int main()
{
Magick::InitializeMagick("");
return 0;
}