Files
Passgeny/meson.build
Mitja HORVAT 3852c4efc9 meson: Add unit test framework
This commit also adds the first unit test. The unit test compares the
phonetic map generated by the Python and by the C implementation and
fails if the generated maps are different.
2021-09-28 11:36:20 +02:00

12 lines
207 B
Meson

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')
subdir('tests')