From a8181729f919a3ca43cda0a13e48058d85d9296e Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Mon, 14 Oct 2019 19:32:14 +0200 Subject: [PATCH] more on meson --- meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 2d3f1ae..61a111b 100644 --- a/meson.build +++ b/meson.build @@ -12,7 +12,7 @@ configuration_inc = include_directories('.') 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') + nlohmann_inc = include_directories('subprojects/nlohmann_json/single_include') nlohmann_lib = declare_dependency(include_directories : nlohmann_inc) endif @@ -31,5 +31,3 @@ if build_machine.system() == 'linux' install_data('manual/Benutzerhandbuch.pdf', install_dir : get_option('datadir') / 'kima2') endif -rpm = import('rpm') -rpm.generate_spec_template()