v3.3.2
This version focuses on improving the features added in v3.3.0
.
New features
meson.build
parser now support multi line entries ofexecutable
andcustom_target
.CMakeLists.txt
parser now support multi line entries ofadd_executable
andadd_custom_target
.
Example
# We were already supporting this:
hello_world = executable('hello_world', 'main.cpp')
# Now we also support this:
hello_world = executable(
'hello_world', 'main.cpp'
)
And any other variation. The other build automation utilities already supported this, so no changes there.