From 44d443a8d6471111c5b33e4c3ec47444cc78c5a2 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Mon, 2 Sep 2024 08:53:50 -0400 Subject: [PATCH] Update INSTALL file (#3606) --- INSTALL | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/INSTALL b/INSTALL index 4e885f645..bbcad9a4e 100644 --- a/INSTALL +++ b/INSTALL @@ -21,18 +21,20 @@ You will need a C++ compiler that supports full C++17, which includes: You will need the following libraries: - libuuid (not needed for OSX) +You will need a Rust toolchain of the Minimum Supported Rust Version (MSRV): + - rust 1.73.0 Basic Installation ------------------ Briefly, these shell commands will unpack, build and install Taskwarrior: - $ tar xzf task-X.Y.Z.tar.gz [1] - $ cd task-X.Y.Z [2] - $ cmake -DCMAKE_BUILD_TYPE=release . [3] - $ make [4] - $ sudo make install [5] - $ cd .. ; rm -r task-X.Y.Z [6] + $ tar xzf task-X.Y.Z.tar.gz [1] + $ cd task-X.Y.Z [2] + $ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release . [3] + $ cmake --build build [4] + $ sudo make -C build install [5] + $ cd .. ; rm -r task-X.Y.Z [6] These commands are explained below: