meson: Setup the Meson build infrastructure

This commit is contained in:
2021-09-22 18:52:34 +02:00
parent 9d3ffdadf5
commit 638f1771a8
8 changed files with 70 additions and 0 deletions

10
meson.build Normal file
View File

@ -0,0 +1,10 @@
project(
'passgeny',
'c',
default_options: ['warning_level=1', 'werror=true'],
version : '0.1')
PHOGEN_WORD_LIST = files('data/words_alpha.txt.backup')
subdir('c')
subdir('python')