diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-12-02 23:01:48 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-12-02 23:01:48 +0100 |
commit | 41f8165d180b6be8afd6203b1705970731741151 (patch) | |
tree | 6e830a3e738607af9c72fea5b0eb654decbdb50e /meson.build | |
parent | d41c4d4a554aa893460b9da6670e7b87bf73c83c (diff) | |
download | pdf-simple-sign-41f8165d180b6be8afd6203b1705970731741151.tar.gz pdf-simple-sign-41f8165d180b6be8afd6203b1705970731741151.tar.xz pdf-simple-sign-41f8165d180b6be8afd6203b1705970731741151.zip |
meson.build: enable installation
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 2d2cec3..0446cc3 100644 --- a/meson.build +++ b/meson.build @@ -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) |