configure: integrate Meson in the build system
[qemu/kevin.git] / meson.build
blob613983e4640daca0a8493399a94848dc43f08204
1 project('qemu', ['c'], meson_version: '>=0.55.0',
2         default_options: ['warning_level=1', 'c_std=gnu99', 'cpp_std=gnu++11', 'b_lundef=false'],
3         version: run_command('head', meson.source_root() / 'VERSION').stdout().strip())
5 not_found = dependency('', required: false)
6 keyval = import('unstable-keyval')
7 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak')
9 add_project_arguments(config_host['QEMU_CFLAGS'].split(),
10                       native: false, language: ['c', 'objc'])
11 add_project_arguments(config_host['QEMU_CXXFLAGS'].split(),
12                       native: false, language: 'cpp')
13 add_project_link_arguments(config_host['QEMU_LDFLAGS'].split(),
14                            native: false, language: ['c', 'cpp', 'objc'])
15 add_project_arguments(config_host['QEMU_INCLUDES'].split(),
16                       language: ['c', 'cpp', 'objc'])
18 add_languages('cpp', required: false, native: false)
19 if host_machine.system() == 'darwin'
20   add_languages('objc', required: false, native: false)
21 endif
23 configure_file(input: files('scripts/ninjatool.py'),
24                output: 'ninjatool',
25                configuration: config_host)