From 62aff01db754c5ebbf8c1963412d2e37025346c4 Mon Sep 17 00:00:00 2001 From: Vladislav Nepogodin Date: Sat, 27 Jul 2024 03:57:42 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20fix=20meson=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8379ead..fce65d6 100644 --- a/meson.build +++ b/meson.build @@ -63,6 +63,7 @@ fmt = dependency('fmt', version : ['>=10.1.0'], fallback : ['fmt', 'fmt_dep']) ftxui = dependency('ftxui', modules : ['ftxui::screen', 'ftxui::dom', 'ftxui::component'], fallback : ['ftxui', 'ftxui_dep']) rapidjson = dependency('rapidjson', version : ['>=1.1.0'], fallback : ['rapidjson', 'rapidjson_dep']) ctre = dependency('ctre', version : ['>=3.8.0'], fallback : ['ctre', 'ctre_dep']) +ranges = dependency('range-v3', version : ['>=0.11.0'], fallback : ['range-v3', 'range_dep']) tomlplusplus = dependency('tomlplusplus', version : ['>=3.4.0'], fallback : ['tomlplusplus', 'tomlplusplus_dep'], default_options: ['compile_library=false']) #glibmm = dependency('glibmm-2.4', version : ['>=2.56.0']) cpr = dependency('cpr', version : ['>=1.10.0'], fallback : ['cpr', 'cpr_dep']) @@ -161,7 +162,7 @@ endif add_project_arguments(cc.get_supported_arguments(possible_cc_flags), language : 'cpp') -deps = [fmt, spdlog, ftxui, rapidjson, ctre, tomlplusplus, cpr] +deps = [fmt, spdlog, ftxui, ranges, rapidjson, ctre, tomlplusplus, cpr] subdir('gucc')