view src/poppler-test.cxx @ 3544:f32ee23a7261

only copy DLL files if doing a Windows build
author John W. Eaton <jwe@octave.org>
date Thu, 20 Feb 2014 02:08:21 -0500
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;
}