Add a Meson-based build system for ease of distribution

This commit is contained in:
Debarshi Ray 2018-10-19 17:45:15 +02:00
parent 93bde90c24
commit 44c44566b9

11
meson.build Normal file
View file

@ -0,0 +1,11 @@
project(
'fedora-toolbox',
version: '0.0.1',
license: 'ASL 2.0',
meson_version: '>= 0.40.0',
)
install_data(
'fedora-toolbox',
install_dir: get_option('bindir'),
)