2024-11-22 22:00:38 +01:00
|
|
|
# Project definition
|
|
|
|
project('zlevis', license: 'GPL3', version: '1')
|
|
|
|
|
|
|
|
# Define bindir
|
2024-12-22 13:29:57 +01:00
|
|
|
bindir = join_paths(get_option('prefix'), get_option('bindir'))
|
2024-11-22 22:00:38 +01:00
|
|
|
|
|
|
|
# Define bins list
|
2024-12-22 13:29:57 +01:00
|
|
|
bins = []
|
2024-11-22 22:00:38 +01:00
|
|
|
|
|
|
|
# Define subdir with bins
|
|
|
|
subdir('src')
|
|
|
|
|
|
|
|
# Install bins in bindir
|
|
|
|
install_data(bins, install_dir: bindir)
|