From 5717c98aa14fcf7838a4780d30c85c7ef7e4bf4e Mon Sep 17 00:00:00 2001 From: Ralf Konrad <42419984+ralfkonrad@users.noreply.github.com> Date: Tue, 29 Oct 2024 21:06:51 +0100 Subject: [PATCH] Fix wrong version tag --- HOWTO-BUILD-FROM-SOURCE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HOWTO-BUILD-FROM-SOURCE.md b/HOWTO-BUILD-FROM-SOURCE.md index f04de30..ed282a5 100644 --- a/HOWTO-BUILD-FROM-SOURCE.md +++ b/HOWTO-BUILD-FROM-SOURCE.md @@ -48,10 +48,10 @@ If you do not have access to the latest versions of the Boost C++ libraries or S you can use the following CMake cache variables to customize the build process: - `QL_MVN_BOOST_VERSION`: The version of the Boost C++ libraries to use, - if you do not want to use the current default `v1.86.0`. + if you do not want to use the current default `1.86.0`. - `QL_MVN_SWIG_VERSION`: The version of the SWIG binaries to use, - if you do not want to use the current default `v4.3.0`. + if you do not want to use the current default `4.3.0`. You can pass these variables to the `cmake` command using the `-D` option like this: @@ -59,7 +59,7 @@ You can pass these variables to the `cmake` command using the `-D` option like t cd quantlib_for_maven mkdir build cd build -cmake -S .. -B . -DQL_MVN_BOOST_VERSION=v1.83.0 -DQL_MVN_SWIG_VERSION=v4.2.1 -L +cmake -S .. -B . -DQL_MVN_BOOST_VERSION=1.83.0 -DQL_MVN_SWIG_VERSION=4.2.1 -L cmake --build . -v ```