zlevis/meson.build

14 lines
284 B
Meson

# Project definition
project('zlevis', license: 'GPL3', version: '1')
# Define bindir
bindir=join_paths(get_option('prefix'), get_option('bindir'))
# Define bins list
bins=[]
# Define subdir with bins
subdir('src')
# Install bins in bindir
install_data(bins, install_dir: bindir)