From 1d2b5fab18f0bc376f45157cdff9056ae327ce63 Mon Sep 17 00:00:00 2001 From: Alessandro Croci <57228872+xela-95@users.noreply.github.com> Date: Wed, 10 Jan 2024 16:24:26 +0100 Subject: [PATCH] Update install.md (#673) Fix typo in cmake command --- doc/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/install.md b/doc/install.md index 2309a03e5..801a7a522 100644 --- a/doc/install.md +++ b/doc/install.md @@ -33,7 +33,7 @@ mkdir build You can use CMake to generate the necessary file for the compilation, and compile gazebo-yarp-plugins using make. The plugins should be install in the directory specified by `CMAKE_INSTALL_PREFIX` (by default `/usr/local`): ``` cd build -cmake -DCMAKE_BUILD_TYPE="Release "../ -DCMAKE_INSTALL_PREFIX=/path/to/the/install/folder +cmake -DCMAKE_BUILD_TYPE="Release" ../ -DCMAKE_INSTALL_PREFIX=/path/to/the/install/folder cmake --config Release --build . --target install ```