From 5aa4e3a5f0456e87c32cba44540d2681fbc8896d Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Fri, 11 Oct 2019 12:49:32 +0200 Subject: [PATCH] typo --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d40c67d..2d3f1ae 100644 --- a/meson.build +++ b/meson.build @@ -9,7 +9,7 @@ configuration_inc = include_directories('.') #csv = cmake.subproject('csv-parser') #csv_lib = csv.dependency('csv') -nlohmann_lib = dependency('nlohmann_json', version : '>=3.55.0', required : false) +nlohmann_lib = dependency('nlohmann_json', version : '>=3.5.0', required : false) if not nlohmann_lib.found() nlohmann_inc = include_directories('subprojects/nlohmann_json/single_include/nlohmann') @@ -30,3 +30,6 @@ if build_machine.system() == 'linux' install_data('misc/kima2.desktop', install_dir : get_option('datadir') / 'applications') install_data('manual/Benutzerhandbuch.pdf', install_dir : get_option('datadir') / 'kima2') endif + +rpm = import('rpm') +rpm.generate_spec_template()