mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Update INSTALL file (#3606)
This commit is contained in:
parent
2e3badbf99
commit
44d443a8d6
1 changed files with 8 additions and 6 deletions
8
INSTALL
8
INSTALL
|
@ -21,6 +21,8 @@ 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
|
||||
------------------
|
||||
|
@ -29,9 +31,9 @@ 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]
|
||||
$ 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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue