From 3baf169da1025c4964419bdb74ba3e5cdd232353 Mon Sep 17 00:00:00 2001 From: Maxim Biro Date: Sun, 13 Feb 2022 22:23:35 -0500 Subject: [PATCH] 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. --- INSTALL.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index afd40957..1213cdd5 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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 \ .. ```