From 4f4372aafd3bf2384a142e78e361163377c8d7be Mon Sep 17 00:00:00 2001 From: Edgar Date: Thu, 19 Nov 2020 10:10:43 +0100 Subject: [PATCH] :arrow_up: Update cmake to 3.19.0 --- .gitignore | 2 ++ install-cmake.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d59a62b..93004a2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ build tmp + +.vscode/ diff --git a/install-cmake.sh b/install-cmake.sh index 674920f..100d83f 100644 --- a/install-cmake.sh +++ b/install-cmake.sh @@ -1,5 +1,5 @@ #!/bin/bash set -eu -wget "https://github.com/Kitware/CMake/releases/download/v3.18.4/cmake-3.18.4-Linux-x86_64.sh" -nv -O /tmp/cmake.sh +wget "https://github.com/Kitware/CMake/releases/download/v3.19.0/cmake-3.19.0-Linux-x86_64.sh" -nv -O /tmp/cmake.sh sh /tmp/cmake.sh --exclude-subdir --prefix=/usr/local