Skip to content

Commit

Permalink
Merge pull request #436 from ralfkonrad/bugfix/version_tag
Browse files Browse the repository at this point in the history
Fix wrong version tag
  • Loading branch information
ralfkonrad authored Oct 29, 2024
2 parents a14fc22 + 5717c98 commit fe353b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HOWTO-BUILD-FROM-SOURCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@ 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:

```shell
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
```

Expand Down

0 comments on commit fe353b2

Please sign in to comment.