diff --git a/README.md b/README.md index facca41d..aed2a7a8 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ See source code in src/SignalHandler/ for more. #### Dependencies -To compile Bloom, the following dependencies must be resolved. +To compile Bloom, the following dependencies must be resolved: - CMake version 3.22 or later: - G++10 or later @@ -105,7 +105,7 @@ cmake --build ./; # Install Bloom to /opt/bloom sudo cmake --install ./; -# OR, install Bloom to [SOME_OTHER_INSTALLATION_DIR]] +# OR, install Bloom to [SOME_OTHER_INSTALLATION_DIR] sudo cmake --install ./ --prefix [SOME_OTHER_INSTALLATION_DIR]; ``` #### Other notes on building from source: @@ -118,4 +118,4 @@ sudo cmake --install ./ --prefix [SOME_OTHER_INSTALLATION_DIR]; 1. Set `LD_LIBRARY_PATH` before running Bloom: `export LD_LIBRARY_PATH=[PATH_TO_QT_INSTALLATION]/gcc_64/lib;` OR: 2. Update Bloom's RUNPATH (with a tool like `patchelf`) - Once you've installed Bloom, you'll need to create a symlink to Bloom's binary, in `/usr/bin/`, to run `bloom` without - having to supply the full path. + having to supply the full path: `sudo ln -s /opt/bloom/bin/bloom /usr/bin/;`