view src/poppler-test.cxx @ 4490:788dc298ec00

octave-wrapper.in: Set and export LIBGL_DRIVERS_PATH.
author John W. Eaton <jwe@octave.org>
date Thu, 05 Oct 2017 14:23:20 -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;
}