meson.build: enable installation
This commit is contained in:
parent
d41c4d4a55
commit
41f8165d18
|
@ -1,3 +1,5 @@
|
||||||
project('pdf-simple-sign', 'cpp', default_options : ['cpp_std=c++11'])
|
project('pdf-simple-sign', 'cpp', default_options : ['cpp_std=c++11'])
|
||||||
cryptodep = dependency('libcrypto')
|
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)
|
||||||
|
|
Loading…
Reference in New Issue