Commit f99117d185d0a59350ee9b134d05ace019f201d4

Authored by SuperCowProducts
Committed by GitHub
1 parent a4d16d3c

Clarify LD_LIBRARY_PATH setup in installation instructions

Updated instructions for setting LD_LIBRARY_PATH to suggest modifying .bashrc.
Showing 1 changed file with 1 additions and 1 deletions
README.md
... ... @@ -150,7 +150,7 @@ cmake -S . -B build
150 150 cmake --build build --config Release
151 151 ```
152 152  
153   -Installation can be done with `cmake --install` (you may need to set the `LD_LIBRARY_PATH` variable, with a command such as `export LD_LIBRARY_PATH=/usr/local/lib64:$LD_LIBRARY_PATH`). Packages can be made with `cpack`.
  153 +Installation can be done with `cmake --install` (you may need to set the `LD_LIBRARY_PATH` variable in your `.bashrc` or similar, with a command such as `export LD_LIBRARY_PATH=/usr/local/lib64:$LD_LIBRARY_PATH`). Packages can be made with `cpack`.
154 154  
155 155 The tests use `qtest`, and the test driver is invoked by `ctest`. To see the real underlying tests,
156 156 run `ctest --verbose` so that you can see `qtest`'s output. If you need to turn off qtest's color output,
... ...