Refine INSTALL file (#3615)

Update INSTALL file

CMake can also abstract the install procedure from the underlying Makefile
This commit is contained in:
Tobias Predel 2024-09-03 00:22:33 +02:00 committed by GitHub
parent 44d443a8d6
commit 72f9cd91a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,7 @@ Briefly, these shell commands will unpack, build and install Taskwarrior:
$ cd task-X.Y.Z [2] $ cd task-X.Y.Z [2]
$ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release . [3] $ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release . [3]
$ cmake --build build [4] $ cmake --build build [4]
$ sudo make -C build install [5] $ sudo cmake --install build [5]
$ cd .. ; rm -r task-X.Y.Z [6] $ cd .. ; rm -r task-X.Y.Z [6]
These commands are explained below: These commands are explained below: