cmake command updated to match debian's /usr location. fixes #232

This commit is contained in:
emeric
2022-05-29 14:02:24 +02:00
parent 8d0bbd0807
commit c5adef7a36
+1 -1
View File
@@ -50,7 +50,7 @@ git clone https://github.com/epoupon/lms.git lms
cd lms
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
```
__Notes__:
* you can customize the installation directory using `-DCMAKE_INSTALL_PREFIX=path` (defaults to `/usr/local`).