QTechOS/meson.build

23 lines
479 B
Meson
Raw Normal View History

project('riscv-qtech-os', ['c', 'cpp'],
default_options: [
'cpp_std=gnu++20',
'c_std=gnu11',
'warning_level=3',
'werror=false',
'buildtype=debugoptimized',
# 'buildtype=release',
]
)
if not meson.is_cross_build()
error('Kernel must be cross compiled')
endif
c = meson.get_compiler('cpp')
cxx = meson.get_compiler('cpp')
arch = host_machine.cpu_family()
platform = 'allwinner-d1'
# platform = 'qemu'
subdir('kernel')