bzr branch
http://gegoxaren.bato24.eu/bzr/%2Bjunk/codegen
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
project('CodeGen', 'c', version : '0.1.0', default_options : ['c_std=c2x', 'warning_level=3'],) add_project_arguments (['-fanalyzer'], language : 'c') conf = configuration_data() conf.set ('PROJECT_NAME', meson.project_name ()) conf.set ('PROJECT_VERSION', meson.project_version ()) subdir ('src') exe = executable('codegen', source_files, hfile, include_directories : conf_inc) test('basic', exe) |