src/meson.build: add zlevis
This commit is contained in:
parent
788a251e6b
commit
0454a9c388
1 changed files with 3 additions and 0 deletions
|
@ -1,14 +1,17 @@
|
||||||
# Find scripts
|
# Find scripts
|
||||||
|
main = find_program('zlevis')
|
||||||
encrypt = find_program('zlevis-encrypt')
|
encrypt = find_program('zlevis-encrypt')
|
||||||
decrypt = find_program('zlevis-decrypt')
|
decrypt = find_program('zlevis-decrypt')
|
||||||
fetch = find_program('zlevis-fetch')
|
fetch = find_program('zlevis-fetch')
|
||||||
|
|
||||||
# Test the scripts
|
# Test the scripts
|
||||||
|
test('zlevis', main, args: '--summary')
|
||||||
test('zlevis-encrypt', encrypt, args: '--summary')
|
test('zlevis-encrypt', encrypt, args: '--summary')
|
||||||
test('zlevis-decrypt', decrypt, args: '--summary')
|
test('zlevis-decrypt', decrypt, args: '--summary')
|
||||||
test('zlevis-fetch', fetch, args: '--summary')
|
test('zlevis-fetch', fetch, args: '--summary')
|
||||||
|
|
||||||
# Add paths of scripts to bins
|
# Add paths of scripts to bins
|
||||||
|
bins += join_paths(meson.current_source_dir(), 'zlevis')
|
||||||
bins += join_paths(meson.current_source_dir(), 'zlevis-encrypt')
|
bins += join_paths(meson.current_source_dir(), 'zlevis-encrypt')
|
||||||
bins += join_paths(meson.current_source_dir(), 'zlevis-decrypt')
|
bins += join_paths(meson.current_source_dir(), 'zlevis-decrypt')
|
||||||
bins += join_paths(meson.current_source_dir(), 'zlevis-fetch')
|
bins += join_paths(meson.current_source_dir(), 'zlevis-fetch')
|
Loading…
Reference in a new issue