view src/poppler-test.cxx @ 6311:9a25fc6a12e9

* src/libidn2.mk: update to v2.3.3
author John Donoghue <john.donoghue@ieee.org>
date Tue, 12 Jul 2022 16:22:17 -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;
}