diff --git a/cmake/README.md b/cmake/README.md index f2af14f9b8..ab3d273bd1 100644 --- a/cmake/README.md +++ b/cmake/README.md @@ -102,10 +102,8 @@ There are several options that can be passed to CMake to modify how the code is For all of these options and parameters you have to use `-D=`. All CMake options are passed at configure time, i.e., by running
-`cmake -S. -B{your chosen build directory} -DFOO=BAR -DBAZ=QUX -DQUUX=QUUZ ...`
-before running `cmake --build {your chosen build directory}`
- -[comment]: <> (https://en.wikipedia.org/wiki/Metasyntactic_variable) +`cmake -S. -B -DOPTION_ONE=ON -DOPTION_TWO=OFF ...`
+before running `cmake --build `
For example, to generate build files including dependencies in a new subdirectory called 'build', run: ```sh