view src/poppler-test.cxx @ 5875:337390a0c7e2 release

gettext.mk: avoid parallel builds.
author John W. Eaton <jwe@octave.org>
date Tue, 07 Sep 2021 14:30:51 -0400
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;
}