1
project('CodeGen', 'c',
3
default_options : ['c_std=c2x',
6
add_project_arguments (['-fanalyzer'], language : 'c')
8
conf = configuration_data()
9
conf.set ('PROJECT_NAME', meson.project_name ())
10
conf.set ('PROJECT_VERSION', meson.project_version ())
14
exe = executable('codegen', source_files, hfile, include_directories : conf_inc)