view src/smpeg-test.c @ 3439:c9ade6d47f3a

Provide new variable to check whether we are doing a Windows build. * Makefile.in (MXE_WINDOWS_BUILD): New variable. * src/libgmop.mk: Use it.
author John W. Eaton <jwe@octave.org>
date Wed, 22 Jan 2014 01:09:48 -0500
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <smpeg.h>
#include <stdio.h>

int main(int argc, char *argv[])
{
    SMPEG_version v;

    (void)argc;
    (void)argv;

    SMPEG_VERSION(&v);
    printf("SMPEG version: %d.%d.%d\n", v.major, v.minor, v.patch);

    return 0;
}