meson.build: enable installation

This commit is contained in:
Přemysl Eric Janouch 2017-12-02 23:01:48 +01:00
parent d41c4d4a55
commit 41f8165d18
Signed by: p
GPG Key ID: B715679E3A361BE6
1 changed files with 3 additions and 1 deletions

View File

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