Initial commit

This commit is contained in:
2017-11-08 16:07:39 +01:00
commit d41c4d4a55
4 changed files with 1046 additions and 0 deletions

3
meson.build Normal file
View File

@@ -0,0 +1,3 @@
project('pdf-simple-sign', 'cpp', default_options : ['cpp_std=c++11'])
cryptodep = dependency('libcrypto')
executable('pdf-simple-sign', 'pdf-simple-sign.cpp', dependencies : cryptodep)