]> begriffs open source - sa-parse/blob - meson.build
Remove old stray test files
[sa-parse] / meson.build
1 project('csv-parser', 'c',
2     version: '1.0.0',
3     default_options: [
4         'warning_level=3',
5         'c_std=c99'
6     ]
7 )
8
9 # Add subdirectory with the actual parser
10 subdir('src')
11
12 # Add test subdirectory if tests exist
13 if get_option('tests').enabled()
14     subdir('tests')
15 endif