diff --git a/web/content/docs/devguide/getting-started/build-configuration.pandoc b/web/content/docs/devguide/getting-started/build-configuration.pandoc
index 1cc2ea0887e3969cc7669b34847326f7d3c18856..a57fbe649a945903cf6ee651879fa8c69d02ecf2 100644
--- a/web/content/docs/devguide/getting-started/build-configuration.pandoc
+++ b/web/content/docs/devguide/getting-started/build-configuration.pandoc
@@ -37,9 +37,9 @@ With Conan one build directory corresponds to one configuration. If you want to
 $ [assuming you are at the same directory where the source code directory is located]
 $ mkdir ogs-build && cd ogs-build
 $ mkdir debug && cd debug
-$ cmake ../../ogs -G "Visual Studio 14 2015 Win64" -DOGS_USE_CONAN=ON -DCMAKE_BUILD_TYPE=Debug
+$ cmake ../../ogs -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug
 $ cd .. && mkdir release && cd release
-$ cmake ../../ogs -G "Visual Studio 14 2015 Win64" -DOGS_USE_CONAN=ON -DCMAKE_BUILD_TYPE=Release
+$ cmake ../../ogs -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Release
 ```
 
 `..\..\ogs` represents the relative path to the source code (please adapt if you have a different directory layout).