diff --git a/README.md b/README.md
index 48a33478b4d75bef9e0c2296d4a6beac147026c5..6624ce62b1fabcf7e9021e9080ef512c181880ba 100644
--- a/README.md
+++ b/README.md
@@ -31,18 +31,13 @@ This code has been programmed in C++. Wrappers for C# are generated automaticall
 ## C++ building with CMake
 * Create a build folder and enter the folder
 * Execute the following commands to configure the platform
-
-
-  -Windows 
-
-
-  cmake -G "Visual Studio 15 2017 Win64" CMAKE_BUILD_TYPE=Release ../
-
-  cmake --build . --target ALL_BUILD --config Release
-  
-
-  -Linux
-  
-  cmake ../
-
-  make
+  - Windows 
+    ```
+    cmake -G "Visual Studio 15 2017 Win64" CMAKE_BUILD_TYPE=Release ../
+    cmake --build . --target ALL_BUILD --config Release
+    ```
+  - Linux
+    ```
+    cmake ../
+    make
+    ```
\ No newline at end of file