From 402c9e1c0b39245b8507c0d2963514fd05d8dc0f Mon Sep 17 00:00:00 2001 From: Bruce Cowan <bruce@bcowan.me.uk> Date: Sun, 20 Oct 2024 13:10:36 +0100 Subject: [PATCH] Rename meson options to modern name --- meson.build | 4 ++-- meson_options.txt => meson.options | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename meson_options.txt => meson.options (100%) diff --git a/meson.build b/meson.build index bb97c76..c4a606e 100644 --- a/meson.build +++ b/meson.build @@ -1,11 +1,11 @@ -# SPDX-FileCopyrightText: 2016-2023 Bruce Cowan <bruce@bcowan.me.uk> +# SPDX-FileCopyrightText: 2016-2024 Bruce Cowan <bruce@bcowan.me.uk> # # SPDX-License-Identifier: GPL-3.0-or-later project('rugby', 'c', version: '0.4.alpha', license:'GPLv3+', - meson_version: '>= 0.59.0', + meson_version: '>= 1.1.0', default_options: [ 'buildtype=debugoptimized', 'c_std=gnu11', diff --git a/meson_options.txt b/meson.options similarity index 100% rename from meson_options.txt rename to meson.options -- GitLab