zlevis/meson.build
2025-08-01 21:16:02 +02:00

14 lines
274 B
Meson

# Project definition
project('zlevis', license: 'GPL3')
# 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)