view src/poppler-test.cxx @ 4119:0db86306c404

Strip compiled oct-files by default * binary-dist-rules.mk: Include '*.oct' in the list of file patterns to strip.
author Mike Miller <mtmiller@octave.org>
date Wed, 30 Mar 2016 16:32:20 -0700
parents 84a15985a644
children
line wrap: on
line source

#include <iostream>
#include <cpp/poppler-version.h>

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

    std::cout << "Poppler version: " << poppler::version_string() << std::endl;

    return 0;
}