From 1bc4963fb1f10a87d5df384701e3c59a1f8ada9d Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Tue, 22 Sep 2020 21:32:18 +0300 Subject: Update Readme Fix crash when downloading --- meson.build | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 926fe8b..df718cc 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('smolbote', ['cpp'], version: '0.1.0', default_options: ['cpp_std=c++2a', 'warning_level=3'], license: 'GPL3', - meson_version: '>=0.53.0' + meson_version: '>=0.55.0' ) summary({ @@ -12,9 +12,8 @@ summary({ 'datadir': get_option('datadir') }, section: 'Install locations') -kconfig = import('unstable-kconfig') -kconf = kconfig.load(host_machine.system() + '/.config') -cdata = configuration_data(kconf) +kconfig = import('unstable-keyval') +cdata = configuration_data(kconfig.load(host_machine.system() + '/.config')) version_h = vcs_tag( command: [find_program('git').path(), 'describe', '--long', '--abbrev=40'], -- cgit v1.2.1