11 lines
223 B
Meson
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')
|