Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-03-27 | Fix typo | Ănder Görmez | 1 | -1/+1 | |
2022-02-27 | cmake: configure_package_config_file can now take a dict | Andrea Pappacoda | 1 | -0/+1 | |
2022-02-01 | cmake: add arch_independent kwarg | Andrea Pappacoda | 1 | -1/+3 | |
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-10 | Fix typos discovered by codespell | Christian Clauss | 1 | -1/+1 | |
2021-10-03 | docs: Fix broken links | Daniel Mensinger | 1 | -6/+5 | |
2021-01-31 | Capitalize "Meson" consistently as it is a proper name. [skip ci] | Jussi Pakkanen | 1 | -8/+8 | |
2021-01-30 | Rewrap long text lines in docs. [skip ci] | Jussi Pakkanen | 1 | -51/+61 | |
2020-10-13 | include_type: Add CMake subporject dependency method (fixes #6879) | Daniel Mensinger | 1 | -1/+4 | |
2020-10-13 | cmake: Add cross docs | Daniel Mensinger | 1 | -0/+37 | |
2020-06-05 | cmake: added docs | Daniel Mensinger | 1 | -3/+74 | |
2020-02-25 | Typo fix. [skip ci] | Jussi Pakkanen | 1 | -1/+1 | |
2020-02-25 | Document the project policy on mixing build systems. [skip ci] | Jussi Pakkanen | 1 | -0/+3 | |
2020-02-19 | modules/cmake: Add a found() method to the cmake subproject | Dylan Baker | 1 | -0/+2 | |
Just like the native meson subproject has. | |||||
2020-02-12 | cmake: Add support for the new JSON trace format | Daniel Mensinger | 1 | -0/+5 | |
2019-11-06 | Fix typos found by codespell | Wolfgang Stöggl | 1 | -2/+2 | |
- Typos were found by codespell v1.16.0 | |||||
2019-06-06 | cmake: doc: fixed typos | Daniel Mensinger | 1 | -5/+5 | |
2019-06-06 | cmake: updated docs | Daniel Mensinger | 1 | -0/+87 | |
2019-01-17 | add support for generating cmake files | David Fort | 1 | -0/+71 | |
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). |