From d4fc5efad0340dcb1cfb8c5487115f5899e635f8 Mon Sep 17 00:00:00 2001 From: Florent Gluck <florent.gluck@hesge.ch> Date: Wed, 25 Nov 2020 13:52:09 +0100 Subject: [PATCH] kdbg: forgot to mention to source prefix.sh before running kdbg --- kdbg/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kdbg/README.md b/kdbg/README.md index 1fd3a15..85516ad 100644 --- a/kdbg/README.md +++ b/kdbg/README.md @@ -28,3 +28,13 @@ Install Kdbg. If you want to do a system-wide install, the command below must be make install ``` +To run `kdbg`, simply type `kdbg`. + +If you specified an install prefix during the cmake step above (with `-DCMAKE_INSTALL_PREFIX`), then you'll need to source `prefix.sh` before running `kdbg` otherwise it won't work properly: + +``` +cp prefix.sh install_dir/kdbg +source install_dir/kdbg +install_dir/kdg +``` + -- GitLab