v3.3.2
This version focuses on improving the features added in v3.3.0.
New features
meson.buildparser now support multi line entries ofexecutableandcustom_target.CMakeLists.txtparser now support multi line entries ofadd_executableandadd_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.