summaryrefslogtreecommitdiffstats
path: root/src/imagemagick-test.cpp
diff options
context:
space:
mode:
authorMartin Lambers <marlam@marlam.de>2013-01-26 11:15:23 (GMT)
committerTony Theodore <tonyt@logyst.com>2013-02-06 05:57:57 (GMT)
commit537e0c986da43987a29876ad76477414f653f703 (patch)
treea1ee7bb4e64d818fce1ff339df249d5c85df5602 /src/imagemagick-test.cpp
parent273e5f2366d25babc20ff8bccdb9847d86d90915 (diff)
downloadmxe-537e0c986da43987a29876ad76477414f653f703.zip
mxe-537e0c986da43987a29876ad76477414f653f703.tar.gz
mxe-537e0c986da43987a29876ad76477414f653f703.tar.bz2
package imagemagick: fix freetype detection, add test
Diffstat (limited to 'src/imagemagick-test.cpp')
-rw-r--r--src/imagemagick-test.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/imagemagick-test.cpp b/src/imagemagick-test.cpp
new file mode 100644
index 0000000..7c7305a
--- /dev/null
+++ b/src/imagemagick-test.cpp
@@ -0,0 +1,17 @@
+/*
+ * This file is part of MXE.
+ * See index.html for further information.
+ */
+
+#include <Magick++.h>
+
+int main(int argc, char *argv[])
+{
+ (void)argc;
+ (void)argv;
+
+ Magick::Image image;
+ image.quality(90);
+
+ return 0;
+}