From b1772c1d1c6a979f6022bac4be8c9c108ccba74c Mon Sep 17 00:00:00 2001 From: alandefreitas Date: Mon, 11 Nov 2024 15:07:25 -0300 Subject: [PATCH] docs(readme): cmake config variables explicit value --- README.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index 8af8bf1d9..589034083 100644 --- a/README.adoc +++ b/README.adoc @@ -130,8 +130,8 @@ In particular, this is of interest to users who wish to compose parsing algorith [source,bash] ---- -cmake -G "Visual Studio 17 2022" -A Win32 -B bin -D BUILD_TESTING -D CMAKE_TOOLCHAIN_FILE=cmake/toolchains/msvc.cmake -cmake -G "Visual Studio 17 2022" -A x64 -B bin64 -D BUILD_TESTING -D CMAKE_TOOLCHAIN_FILE=cmake/toolchains/msvc.cmake +cmake -G "Visual Studio 17 2022" -A Win32 -B bin -D BUILD_TESTING=ON -D CMAKE_TOOLCHAIN_FILE=cmake/toolchains/msvc.cmake +cmake -G "Visual Studio 17 2022" -A x64 -B bin64 -D BUILD_TESTING=ON -D CMAKE_TOOLCHAIN_FILE=cmake/toolchains/msvc.cmake ---- == Quick Look