Update INSTALL file (#3606)

This commit is contained in:
Dustin J. Mitchell 2024-09-02 08:53:50 -04:00 committed by GitHub
parent 2e3badbf99
commit 44d443a8d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

14
INSTALL
View file

@ -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: