summaryrefslogtreecommitdiffstats
path: root/src/poppler-test.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/poppler-test.cxx')
-rw-r--r--src/poppler-test.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/poppler-test.cxx b/src/poppler-test.cxx
new file mode 100644
index 0000000..e59b48a
--- /dev/null
+++ b/src/poppler-test.cxx
@@ -0,0 +1,12 @@
+#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;
+}