summaryrefslogtreecommitdiffstats
path: root/src/poppler-test.cxx
diff options
context:
space:
mode:
authorStefan Löffler <st.loeffler@gmail.com>2012-04-17 19:07:25 (GMT)
committerStefan Löffler <st.loeffler@gmail.com>2012-04-17 19:07:25 (GMT)
commit04d70b56a3f985e0a291a241ead3996f0524b860 (patch)
treeefdc971c97a5426e4403eb88d9e75cb200f56daa /src/poppler-test.cxx
parent7daf04c4aa4fcfc63a8c810a4f66bea7fbd29db2 (diff)
downloadmxe-04d70b56a3f985e0a291a241ead3996f0524b860.zip
mxe-04d70b56a3f985e0a291a241ead3996f0524b860.tar.gz
mxe-04d70b56a3f985e0a291a241ead3996f0524b860.tar.bz2
New package: poppler
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..ce9a9fb
--- /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;
+}