diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-10-13 23:38:51 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 23:38:51 +0300 |
commit | 3372c58ca633e2bc7d5b36bcd7e0d14d12e0f82a (patch) | |
tree | e0af9977e708170d136104e4eb056b6f9f31eda0 /docs/markdown/Machine-files.md | |
parent | 55cf399ff8b9c15300f26dd1a46045dda7d49f98 (diff) | |
parent | f5c9bf96b370832fc1a6e50771e2c171de0cd79d (diff) | |
download | meson-3372c58ca633e2bc7d5b36bcd7e0d14d12e0f82a.zip meson-3372c58ca633e2bc7d5b36bcd7e0d14d12e0f82a.tar.gz meson-3372c58ca633e2bc7d5b36bcd7e0d14d12e0f82a.tar.bz2 |
Merge pull request #7816 from mensinda/cmCross
cmake: Cross compilation support
Diffstat (limited to 'docs/markdown/Machine-files.md')
-rw-r--r-- | docs/markdown/Machine-files.md | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/docs/markdown/Machine-files.md b/docs/markdown/Machine-files.md index ab450cc..72d2e0c 100644 --- a/docs/markdown/Machine-files.md +++ b/docs/markdown/Machine-files.md @@ -46,6 +46,7 @@ The following sections are allowed: - binaries - paths - properties +- cmake - project options - built-in options @@ -203,6 +204,62 @@ section may contain random key value pairs accessed using the properties section has been deprecated, and should be put in the built-in options section. +#### Supported properties + +This is a non exhaustive list of supported variables in the `[properties]` +section. + +- `cmake_toolchain_file` specifies an absoulte path to an already existing + CMake toolchain file that will be loaded with `include()` as the last + instruction of the automatically generated CMake toolchain file from meson. + (*new in 0.56.0*) +- `cmake_defaults` is a boolean that specifies whether meson should automatically + generate default toolchain varaibles from other sections (`binaries`, + `host_machine`, etc.) in the machine file. Defaults are always overwritten + by variables set in the `[cmake]` section. The default is `true`. (*new in 0.56.0*) +- `cmake_skip_compiler_test` is an enum that specifies when meson should + automatically generate toolchain variables to skip the CMake compiler + sanity checks. This only has an effect if `cmake_defaults` is `true`. + Supported values are `always`, `never`, `dep_only`. The default is `dep_only`. + (*new in 0.56.0*) +- `cmake_use_exe_wrapper` is a boolean that controlls whether to use the + `exe_wrapper` specified in `[binaries]` to run generated executables in CMake + subprojects. This setting has no effect if the `exe_wrapper` was not specified. + The default value is `true`. (*new in 0.56.0*) + +### CMake variables + +*New in 0.56.0* + +All variables set in the `[cmake]` section will be added to the generate CMake +toolchain file used for both CMake dependencies and CMake subprojects. The type +of each entry must be either a string or a list of strings. + +**Note:** All occurances of `\` in the value of all keys will be replaced with + a `/` since CMake has a lot of issues with correctly escaping `\` when + dealing with variables (even in cases where a path in `CMAKE_C_COMPILER` + is correctly escaped, CMake will still trip up internaly for instance) + + A custom toolchain file should be used (via the `cmake_toolchain_file` + property) if `\` support is required. + +```ini +[cmake] + +CMAKE_C_COMPILER = '/usr/bin/gcc' +CMAKE_CXX_COMPILER = 'C:\\user\\bin\\g++' +CMAKE_SOME_VARIABLE = ['some', 'value with spaces'] +``` + +For instance, the `[cmake]` section from above will generate the following +code in the CMake toolchain file: + +```cmake +set(CMAKE_C_COMPILER "/usr/bin/gcc") +set(CMAKE_C_COMPILER "C:/usr/bin/g++") +set(CMAKE_SOME_VARIABLE "some" "value with spaces") +``` + ### Project specific options *New in 0.56.0* |