From 54e8db486c455e488584e1d30e185d437afa5e66 Mon Sep 17 00:00:00 2001 From: Rachel Date: Thu, 9 Jan 2025 11:12:48 -0800 Subject: [PATCH] Update required Meson version to 1.5.0 Changes to the field scripting compiler to depend on `trdata.naix` use a `CustomTargetIndex` in the `generator`'s `depends` kwarg. This support was added in 1.5.0, as per tags on mesonbuild/meson PR #12956. --- INSTALL.md | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 02cb8ca8ad..8216e4d66b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -211,7 +211,7 @@ GNU `coreutils` installed to run the build scripts: > convenience. > > [!IMPORTANT] -> This project requires `meson` version `1.3.0` or higher. If the version of +> This project requires `meson` version `1.5.0` or higher. If the version of > `meson` provided by your package manager is out of date, then follow > [these instructions](https://mesonbuild.com/Getting-meson.html) to get the > most recent version. diff --git a/meson.build b/meson.build index 00b3a4ec48..e9d13e5c39 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('pokeplatinum', ['c', 'cpp', 'nasm'], version: '1.0', - meson_version: '>=1.3.0', + meson_version: '>=1.5.0', default_options : [ 'buildtype=plain', 'warning_level=0'