mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
Meson 1.1 changed the name of the options file from `meson_options.txt` to `meson.options`. Currently we're stuck with Meson 1.0 as minimum Meson version because we still support Ubuntu 22.04 Jammy, but on some machines a newer version of meson gets installed which causes the options to be ignored. The first attempt to simply symlink or copy `meson_options.txt` to `meson.options` failed because git on Windows doesn't support symlinks by default, and Meson complains if it finds two options files (#15127). Fortunately not having an options file is only a problem for Core where we have one option in the options file that defaults to true. The solution implemented in this change is to always pass the option to Meson. Test-bot: skip |
||
|---|---|---|
| .. | ||
| ci | ||
| history | ||
| l10n | ||
| mac | ||
| meson | ||
| pr-build-status | ||
| test | ||
| version | ||
| win | ||
| _builder_nvm.sh | ||
| build-download-resources.sh | ||
| build-help.inc.sh | ||
| build-utils.sh | ||
| builder-basic.inc.sh | ||
| builder-full.inc.sh | ||
| builder-report.sh | ||
| htm-link.lua | ||
| html-link.lua | ||
| jq-license.txt | ||
| jq-win64.exe | ||
| jq.inc.sh | ||
| meson-utils.inc.sh | ||
| minimum-versions.inc.sh | ||
| minimum-versions.tests.inc.sh | ||
| node.inc.sh | ||
| offline-help-style-spec.txt | ||
| publish-minimum-versions.sh | ||
| README.md | ||
| report-history.sh | ||
| typescript.inc.sh | ||
| utils.inc.sh | ||
| zip.inc.sh | ||
Various tools
builder-basic.inc.sh, builder-full.inc.sh
There are two wrappers for builder.inc.sh:
- resources/build/builder-basic.inc.sh - Keyman-specific builder-based script that also sets version environment, repo base path, and other environment variables
- resources/build/builder-full.inc.sh - Keyman-specific builder-based script, calls builder-basic.inc.sh, sets cwd to script path, and on exit verifies that builder functions were used appropriately.
All build.sh scripts should use builder-full.inc.sh. Some helper scripts may use builder-basic.inc.sh. No scripts in this repo (apart from tests) should use builder.inc.sh directly.
builder.inc.sh is documented in builder.md
jq/jq-win64
jq resp. jq-win64.exe is used by various builds for json query.
Official source: https://stedolan.github.io/jq/. License