aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2022-01-10bump minimum required version of python to 3.7Eli Schwartz3-4/+11
Comment out the pending deprecation notice. It cannot be reached anymore, but is still useful for the next time we do a version bump.
2022-01-10docs: fix rust module bindgen argumentsDylan Baker1-5/+5
Fixes: 9795
2022-01-10remove the RPM moduleEli Schwartz4-18/+10
It is unmaintained, broken (frequently for long periods of time) and not really required for any meson functionality. Its purpose is to be used as a one-shot tool for creating a distro package recipe, and then deleted from your meson.build files. Due to its fragile dependency on coredata implementation details, we cannot assume it will reliably work, or continue to work, without someone who is actively willing to take responsibility for it. Even if that were to happen, this might be better off as an external script that parses introspection data. Closes #9764 Closes #9763
2022-01-10Merge pull request #9739 from mathstuf/armclang-supportJussi Pakkanen1-0/+6
Armclang support
2022-01-10Prepare release 0.61.0.0.61.0Jussi Pakkanen13-120/+139
2022-01-10add pending deprecation notice for python 3.6Eli Schwartz1-0/+13
2022-01-10Running-Meson.md: fix a broken linkx-yuri1-1/+1
2022-01-09Remove docs for ghwt that got deleted ages ago.Jussi Pakkanen2-44/+0
2022-01-07Merge pull request #9773 from annacrombie/masterJussi Pakkanen6-8/+410
Add a man page backend to refman
2022-01-06add release notes for refman man pageStone Tickle1-0/+4
2022-01-06add man page generation to buildStone Tickle1-0/+16
2022-01-06add man page backend to refmanStone Tickle2-1/+385
2022-01-05Fix syntax highlighting Continuous-Integration.mdJohn Kilpatrick1-1/+1
2022-01-05cleanup _extract_meson_version()Stone Tickle2-7/+5
2022-01-03armltdclang: add support for ARM Ltd.'s `armclang` toolchainBen Boeckel1-0/+6
This is another toolchain also called `armclang`, but it is not a cross compiler like Keil's `armclang`. It is essentially the same as `clang` based on its interface and CMake's support of the toolchain. Use an `armltd` prefix for the compiler ID. Fixes: #7255
2022-01-02docs: Update yelp documentation to reflect what it is actually doingPablo Correa Gómez1-2/+2
2021-12-30fix incorrect docs for add_*_scriptEli Schwartz1-8/+23
They claimed that all of these functions accepted any posargs or varargs that install scripts supported. This was inconsistent with both the types that meson currently allowed, and the types that we documented in refman 1.0 *should* be allowed. Take the opportuninty to be clear as refman 1.0 never was, about the difference between types supported in the first posarg, and the ypes supported in succeeding varargs.
2021-12-17add ft32 cpu familyRafael Silva1-0/+1
2021-12-15rewriter: create {add,rm}_extra_files commandsCeleste Wouters2-1/+38
Add ability to mutate a target's `extra_files` list through the rewriter. The logic is copied from sources add/rm, but changes the `extra_files` kwarg instead of the sources positional argument. Has additional logic to handle creating the `extra_files` list if it doesn't exist.
2021-12-08docs: Add the `configuration` keyword argument to `configure_File`Dylan Baker1-0/+7
We were missing the most important keyword argument of them all!
2021-12-07gnome/genmarshal: Add missing kwargs to permittedKwargsDylan Baker1-7/+12
There are thee arguments that are passed directly to CustomTarget which are not in the permittedKwargs: depends, depend_files, and build_always. The first two are obviously generically useful, as they allow creating correct ordering. The latter, not so much. Since it was an error to pass it, we'll just delete it.
2021-12-06gnome module: document and fix install_dir x3, by allowing false *_gir and ↵Eli Schwartz1-2/+2
*_typelib generate_gir forces building both the typelib and gir, and some people only want one or the other (probably only the typelib?) which means flagging the other as install_dir: false in the same way custom_target supports. As this always worked, albeit undocumented, make sure it keeps working. It's pretty reasonable to allow, anyway. Fixes https://github.com/mesonbuild/meson/pull/9484#issuecomment-980131791
2021-12-06interpreter: allow extract_objects to receive generated sourcesPaolo Bonzini1-0/+4
Fixes: #8333
2021-12-06doc: fix missing kwarg in qt5 moduleEli Schwartz1-0/+1
compile_moc accepts "dependencies" for the same reason preprocess does, but the original documentation never copied this over from the preprocess docs. See: https://github.com/mesonbuild/meson/issues/9683#issuecomment-986825041
2021-12-01gnome module: document that yelp(languages: ...) is deprecatedEli Schwartz1-1/+5
If you use it, we emit a warning telling you to use LINGUAS instead. So we should warn people in the documentation as well. Fixes #9495
2021-12-02cmake: Deprecate CMake <3.14 and warn for <3.17 (#9677)Daniel Mensinger1-0/+7
* cmake: Deprecate CMake <3.14 and warn for <3.17 See: - #7832 - #9676 * cmake: Add deprecation release note snippet
2021-12-01add install_symlink functionPablo Correa Gómez2-0/+45
Allows installing symlinks directly from meson, which can become useful in multiple scenarios. Current main use is to help moving forward #9557
2021-11-29docs: add missing argument documentation for run_command captureDylan Baker1-0/+9
2021-11-25Stop backend_startup_project from erasing the last project in a VS solutionLuke Elliott1-0/+4
if it is not the specified project.
2021-11-24shared_module: Add soname when used as a link targetNirbheek Chauhan2-7/+9
Emit a detailed deprecation warning that explains what to do instead. Also add a unittest. ``` DEPRECATION: target prog links against shared module mymod, which is incorrect. This will be an error in the future, so please use shared_library() for mymod instead. If shared_module() was used for mymod because it has references to undefined symbols, use shared_libary() with `override_options: ['b_lundef=false']` instead. ``` Fixes https://github.com/mesonbuild/meson/issues/9492
2021-11-21Clarify some wording for compiler.first_supported_argumentLuke Drummond1-2/+3
After a discussion implementing this for muon [1] and clarification on IRC on Meson's behaviour. [1] https://lists.sr.ht/~lattis/muon/patches/26722
2021-11-21Support Visual Studio 2022 backendCrend King4-15/+26
2021-11-15Merge pull request #9520 from dcbaker/submit/gnome-first-typed-kwargsJussi Pakkanen1-0/+13
Add typed_kwargs to some of the gnome module functions
2021-11-15dependencies/zlib: Add system zlib method for androidDudemanguy1-1/+1
The same method that the BSDs use should also work for android. Also update the tests and docs where appropriate.
2021-11-14Users.md: add mpvDudemanguy1-0/+1
2021-11-09docs: fix refman 2.0 regression in correctly describing ↵Eli Schwartz1-2/+37
find_library(has_headers) All kwargs inherited from has_header need to be prefixed `header_` so we cannot just do straight inheritance. And the part of the description that highlighted the way kwargs are derived and evolved, went entirely missing. Fixes #9551
2021-11-09docs: fix some spelling typosEli Schwartz1-1/+1
2021-11-08modules/gnome: use typed_kwargs for compile_resourcesDylan Baker1-0/+13
2021-11-05Fix markdown formating in find_program.yamlrusty-snake1-2/+2
fixes #9528
2021-11-02Add tutorial for building an SDL app from scratch.Jussi Pakkanen9-0/+197
2021-11-02FAQ: Add entry about `add_project_link_arguments` and multiple languagesDylan Baker1-0/+44
This seems to come up fairly often, so having an FAQ entry seems useful.
2021-10-30Added warning if run_command is called without the check kwargVolker Weißmann5-8/+24
2021-10-30Typo fixes (CustomTaget -> CustomTarget)rusty-snake1-2/+2
2021-10-29Merge pull request #9375 from dcbaker/submit/windows-module-typingJussi Pakkanen2-3/+37
Typing for the Windows module
2021-10-29Add note in release notes that thin archives has been revertedXavier Claessens1-0/+4
2021-10-27Fix markdown list in Bultin-options.md [skip ci]Matthieu Gautier1-3/+4
The broken list was introduce by commit f72ee8e7 which fix too long lines.
2021-10-26doc: Requires hotdoc >=0.13.7Xavier Claessens1-1/+3
Building documentation fails with older hotdoc versions.
2021-10-26message: Allow boolXavier Claessens1-3/+3
It has always been working even if not documented and there is no reason to not accept it. However, change "True/False" to "true/false" to be consistent with meson language. Fixes: #9436
2021-10-25Add sccache support.Jussi Pakkanen1-0/+5
2021-10-25Fix typos in release notes for 0.60.0Nirbheek Chauhan1-2/+2