Skip to content

Commit

Permalink
Update INSTALL file
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Aug 27, 2024
1 parent 6cfbb16 commit ee8365e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -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 install [5]
$ cd .. ; rm -r task-X.Y.Z [6]

These commands are explained below:

Expand Down

0 comments on commit ee8365e

Please sign in to comment.