Add example config and testing for meson build system - #27478
Merged
Conversation
sbc100
force-pushed
the
meson-testing
branch
2 times, most recently
from
August 3, 2026 16:14
7aa822f to
711312e
Compare
kripken
approved these changes
Aug 3, 2026
sbc100
force-pushed
the
meson-testing
branch
3 times, most recently
from
August 3, 2026 18:51
5112d65 to
5327627
Compare
sbc100
enabled auto-merge (squash)
August 3, 2026 18:59
This is a meta-build-system (like cmake) that generated Ninja by default. It pretty popular in certain open source communities. For example the whole Gnome and X.Org / Wayland is based on it. Add simple tests for the meson build system along with example cross files for `wasm32` and `wasm64` in `test/meson/`. * `test/meson/wasm32-emscripten.ini`: Cross file for wasm32 with `node` wrapper. * `test/meson/wasm64-emscripten.ini`: Cross file for wasm64 with `-m64` flags. * `test/meson/simple/`: C test project for standard Meson build. * `test/meson/simple_64/`: C test project for wasm64 Meson build.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is a meta-build-system (like cmake) that generated Ninja by
default. It pretty popular in certain open source communities. For
example the whole Gnome and X.Org / Wayland is based on it.
Add simple tests for the meson build system along with example cross
files for
wasm32andwasm64intest/meson/.test/meson/wasm32-emscripten.ini: Cross file for wasm32 withnodewrapper.test/meson/wasm64-emscripten.ini: Cross file for wasm64 with-m64flags.test/meson/simple/: C test project for standard Meson build.