view src/graphicsmagick-test.cpp @ 5522:c475092f8142

openblas: Support using ccache. * src/openblas.mk: Get the basename of the (cross-)compilers to find their ccache links in the search path.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 27 Aug 2020 12:47:35 +0200
parents 99516e73b368
children
line wrap: on
line source

/*
 * 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::InitializeMagick(0);

    Magick::Image image;
    image.quality(90);

    return 0;
}