mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-12 17:19:05 -05:00
1bba218214
- 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.
11 lines
121 B
C++
11 lines
121 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
#include <Magick++.h>
|
|
|
|
int main()
|
|
{
|
|
Magick::InitializeMagick("");
|
|
return 0;
|
|
}
|