summaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)Author
2025-12-08Bump version number for 1.10.Jussi Pakkanen
2025-12-01man: add mention of `meson-reference(3)` to SEE ALSOAnna (navi) Figueiredo Gomes
2025-09-03Use https for mesonbuild.comTobias Stoeckmann
Since http://mesonbuild.com redirects to https://mesonbuild.com anyway, use https directly in documentation.
2025-08-01Bump version number for rc1.Jussi Pakkanen
2025-04-20man: document "meson setup -D"Paolo Bonzini
Fixes: #810
2025-04-16Bump version number for rc1.Jussi Pakkanen
2025-03-20man page: Running without 'setup' is deprecatedFeRD (Frank Dana)
Move the mention of the (deprecated) default command mode down near the end of the page, instead of presenting it right up front.
2025-02-27mtest: add option to slice testsPatrick Steinhardt
Executing tests can take a very long time. As an example, the Git test suite on Windows takes around 4 hours to execute. The Git project has been working around the issue by splitting up CI jobs into multiple slices: one job creates the build artifacts, and then we spawn N test jobs with those artifacts, where each test job executes 1/Nth of the tests. This can be scripted rather easily by using `meson test --list`, selecting every Nth line, but there may be other projects that have a similar need. Wire up a new option "--slice i/n" to `meson test` that does implements this logic. Signed-off-by: Patrick Steinhardt <ps@pks.im>
2025-01-09Bump version number for rc1.Jussi Pakkanen
2024-10-07Update version number for rc1.Jussi Pakkanen
2024-07-01Bump version number for rc2.Jussi Pakkanen
2024-06-24Bump version numbers for rc1.Jussi Pakkanen
2024-06-11Add help for meson format to the man page.John Wiele
The added help text was derived from the output of the meson help command much like the markdown online help is derived.
2024-06-06Add help for meson env2mfile to the man page.John Wiele
The added help text was derived from the output of the meson help command much like the markdown online help is derived.
2024-06-06Add help for meson devenv to the man page.John Wiele
The added help text was derived from the output of the meson help command much like the markdown online help is derived.
2024-06-06Add help for meson compile to the man page.John Wiele
The added help text was derived from the output of the meson help command much like the markdown online help is derived.
2024-06-06Add help for meson rewrite to the man page.John Wiele
The added help text was derived from the output of the meson help command much like the markdown online help is derived.
2024-06-06Add help for meson subprojects to the man page.John Wiele
The added help text was derived from the output of the meson help command much like the markdown online help is derived.
2024-06-06Add help for meson init to the man page.John Wiele
The added help text was derived from the output of the meson help command much like the markdown online help is derived.
2024-06-06Add help for meson install to the man page.John Wiele
The added help text was derived from the output of the meson help command much like the markdown online help is derived.
2024-06-06Add help for meson dist to the man page.John Wiele
The added help text was derived from the output of the meson help command much like the markdown online help is derived.
2024-03-03Bump version number for rc2.Jussi Pakkanen
2024-02-26Bump version number for rc1.Jussi Pakkanen
2023-11-06Increment version number for rc2.Jussi Pakkanen
2023-10-27Bump version number for RC1.Jussi Pakkanen
2023-07-05Bump version number for rc2.Jussi Pakkanen
2023-06-28Bump version number for rc1.Jussi Pakkanen
2023-04-02Bump version number for rc2.Jussi Pakkanen
2023-03-28Bump version number for rc1.Jussi Pakkanen
2023-03-28Add support for meson.options as a replacement for meson_options.txtDylan Baker
We will still try to load `meson_options.txt` if `meson.options` doesn't exist. Because there are some advantages to using `meson.options` even with older versions of meson (such as better text editor handling) we will not warn about the existence of a `meson.options` file if a `meson_options.txt` file or symlink also exists. The name `meson.options` was picked instead of alternative proposals, such as `meson_options.build` for a couple of reasons: 1. meson.options is shorter 2. While the syntax is the same, only the `option()` function may be called in meson.options, while, it may not be called in meson.build 3. While the two files share a syntax and elementary types (strings, arrays, etc), they have different purposes: `meson.build` declares build targets, `meson.options` declares options. This is similar to the difference between C's `.c` and `.h` extensions. As an implementation detail `Interpreter.option_file` has been removed, as it is used exactly once, in the `project()` call to read the options, and we can just calculate it there and not store it. Fixes: #11176
2022-12-10Bump version numbers for rc1.Jussi Pakkanen
2022-11-06Bump version number for release.Jussi Pakkanen
2022-10-25Bump version numbers for 0.64.0.rc1.Jussi Pakkanen
2022-07-03Finalize the release.Jussi Pakkanen
2022-06-19Update version numbers for rc1.Jussi Pakkanen
2022-03-10Bump version numbers for rc1 release.Jussi Pakkanen
2022-01-02Bump version numbers for rc1.Jussi Pakkanen
2021-10-11Bump version number for rc1.Jussi Pakkanen
2021-07-05Bump version number for rc1.Jussi Pakkanen
2021-05-02Release 0.58.0.Jussi Pakkanen
2021-04-26Bump version number for rc1.Jussi Pakkanen
2021-02-09Bump version numbers for rc1.Jussi Pakkanen
2020-10-19Bump version number for rc1.Jussi Pakkanen
2020-07-02Bump version number for RC1.Jussi Pakkanen
2020-03-24Bump version number for rc1.Jussi Pakkanen
2020-01-07Prepare new release.Jussi Pakkanen
2019-10-06Updated version numbers for 0.52.0 release.Jussi Pakkanen
2019-09-05man: Make argument order of setup command consistent with help messageFabian Bläse
In msetup the two positional arguments build-dir and source-dir are added to the argument parser in this order. This also affects the help message. This order is different from the order given in the man page. Therefore it is switched around in the man page to make it consistent with the help message. As the code automatically decides which directory contains what, this change is only cosmetic. Both argument orders should be valid. Signed-off-by: Fabian Bläse <fabian@blaese.de>
2019-07-12Change meson test's build failure exit code to 125Christoph Weiss
2019-06-16Update things for new release.Jussi Pakkanen