diff --git a/scripts/patch_cmake.py b/scripts/patch_cmake.py index 2d92d04..5e5a6ba 100644 --- a/scripts/patch_cmake.py +++ b/scripts/patch_cmake.py @@ -27,6 +27,9 @@ for x in f: f.close() p.close() +#Replace cmake version, as 3.19 is not really needed +result.replace("3.19", "3.18") + f = open(input, "w") f.write(result) f.close()