diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-09-22 21:32:18 +0300 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-09-22 21:32:18 +0300 |
commit | 1bc4963fb1f10a87d5df384701e3c59a1f8ada9d (patch) | |
tree | e9bf0e54385b43f4c18e2244fb811d9b04535f87 /meson.build | |
parent | Fix compiler warnings in Configuration (diff) | |
download | smolbote-1bc4963fb1f10a87d5df384701e3c59a1f8ada9d.tar.xz |
Update Readme
Fix crash when downloading
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 7 |
1 files changed, 3 insertions, 4 deletions
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'], |