minix/meson.build
2025-06-03 19:42:37 -07:00

11 lines
223 B
Meson

# Meson build configuration for the MINIX project
# The kernel sources are written in C11.
project(
'minix',
'c',
default_options: ['c_std=c11']
)
# Add the MINIX source directory to the build.
subdir('minix')