From e4e4bef8dbe5a85d38084ea4125b7da81952ebf3 Mon Sep 17 00:00:00 2001 From: Van Malleghem Antoine Date: Fri, 6 Sep 2024 20:00:29 +0200 Subject: [PATCH 1/2] fix prerequisites Signed-off-by: Van Malleghem Antoine --- tutorials/23_depth_camera_tutorial.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tutorials/23_depth_camera_tutorial.md b/tutorials/23_depth_camera_tutorial.md index a1204ec9b..7bb4e39f3 100644 --- a/tutorials/23_depth_camera_tutorial.md +++ b/tutorials/23_depth_camera_tutorial.md @@ -2,6 +2,14 @@ This example shows how to use the depth camera. +## Install prerequisites + +In order to compile this tutorial, you need to install some prerequisites : + +```{.sh} +sudo apt-get install build-essential freeglut3-dev libglew-dev +``` + ## Compile and run the example Clone the source code, create a build directory and use `cmake` and `make` to compile the code: From f7149ff185887da258a0610ecf7ebf81a0abf009 Mon Sep 17 00:00:00 2001 From: Antoine Van Malleghem Date: Mon, 9 Sep 2024 07:28:32 +0200 Subject: [PATCH 2/2] Update tutorials/23_depth_camera_tutorial.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Alejandro Hernández Cordero Signed-off-by: Antoine Van Malleghem --- tutorials/23_depth_camera_tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/23_depth_camera_tutorial.md b/tutorials/23_depth_camera_tutorial.md index 7bb4e39f3..40712202c 100644 --- a/tutorials/23_depth_camera_tutorial.md +++ b/tutorials/23_depth_camera_tutorial.md @@ -6,7 +6,7 @@ This example shows how to use the depth camera. In order to compile this tutorial, you need to install some prerequisites : -```{.sh} +```bash sudo apt-get install build-essential freeglut3-dev libglew-dev ```