This commit is contained in:
Martin Brodbeck 2019-10-11 12:49:32 +02:00
parent 77226f294b
commit 5aa4e3a5f0
1 changed files with 4 additions and 1 deletions

View File

@ -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()