Initial meson setup

This commit is contained in:
Samuel Sloniker 2023-05-08 11:42:26 -07:00
parent dbe84b86ec
commit 49a33d171a
2 changed files with 13 additions and 0 deletions

10
meson.build Normal file
View File

@ -0,0 +1,10 @@
project('adsms')
py = import('python').find_installation()
py.install_sources(
'adsms__init__.py',
preserve_path: true,
)
install_data('run_adsms.py', install_dir: get_option('bindir'), rename: 'adsms')

3
run_adsms.py Normal file
View File

@ -0,0 +1,3 @@
import adsms
adsms.main()