Use a bit less random example for options

Just in case someone treats these options as a recommendation, which
they are not, they are there just to show how to set various data types.
This commit is contained in:
Maxim Biro 2022-02-13 22:23:35 -05:00
parent b36014ab36
commit 3baf169da1
No known key found for this signature in database
GPG Key ID: AB3AD9896472BFA4

View File

@ -138,8 +138,9 @@ Example of calling cmake with options
```sh
cmake \
-D ENABLE_STATIC=OFF \
-D MIN_LOGGER_LEVEL=DEBUG \
-D CMAKE_INSTALL_PREFIX=/opt \
-D ENABLE_SHARED=ON \
-D CMAKE_INSTALL_PREFIX="${PWD}/prefix" \
-D CMAKE_BUILD_TYPE=Release \
-D TEST_TIMEOUT_SECONDS=120 \
..
```