summaryrefslogtreecommitdiff
path: root/docs/markdown/CMake-module.md
AgeCommit message (Collapse)Author
2023-08-02Fix syntax mistakes in two examplesVolker Weißmann
2022-06-29docs: update various function references to be linkifiedEli Schwartz
2022-06-27docs: correctly classify module methods as a method, not a functionEli Schwartz
2022-06-27docs: grammar nitEli Schwartz
2022-03-27Fix typoÖnder Görmez
2022-02-27cmake: configure_package_config_file can now take a dictAndrea Pappacoda
2022-02-01cmake: add arch_independent kwargAndrea Pappacoda
CMake's write_basic_package_version_file has supported since version 3.14 an ARCH_INDEPENDENT option that makes it skip its architecture check in the Version file. With this patch Meson now supports it as well, and the change is also compatible with older CMake versions, as they will simply ignore the option. This also slightly changes the contents of the generated Version file when arch_independent is not set: previously, the if() needed to skip the arch check was always filled with an empty string, while CMake puts "FALSE" (or "TRUE") in it. Now, that if() will always be filled with either "False" or "True", better matching CMake's behaviour.
2021-10-10Fix typos discovered by codespellChristian Clauss
2021-10-03docs: Fix broken linksDaniel Mensinger
2021-01-31Capitalize "Meson" consistently as it is a proper name. [skip ci]Jussi Pakkanen
2021-01-30Rewrap long text lines in docs. [skip ci]Jussi Pakkanen
2020-10-13include_type: Add CMake subporject dependency method (fixes #6879)Daniel Mensinger
2020-10-13cmake: Add cross docsDaniel Mensinger
2020-06-05cmake: added docsDaniel Mensinger
2020-02-25Typo fix. [skip ci]Jussi Pakkanen
2020-02-25Document the project policy on mixing build systems. [skip ci]Jussi Pakkanen
2020-02-19modules/cmake: Add a found() method to the cmake subprojectDylan Baker
Just like the native meson subproject has.
2020-02-12cmake: Add support for the new JSON trace formatDaniel Mensinger
2019-11-06Fix typos found by codespellWolfgang Stöggl
- Typos were found by codespell v1.16.0
2019-06-06cmake: doc: fixed typosDaniel Mensinger
2019-06-06cmake: updated docsDaniel Mensinger
2019-01-17add support for generating cmake filesDavid Fort
This new cmake module allows to generate cmake package files. This may ease the porting for cmake projects that are exporting cmake package informations for other depending projects. The module uses as much as possible the templates provided by the cmake installation (and so cmake needs to be installed).