mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
This change updates the instructions for how to generate a Conan lockfile that is compatible with Linux, macOS, and Windows. Whenever Conan dependencies change, the Conan lock file needs to be regenerated. However, different OSes have slightly different requirements, and thus require slightly different dependencies. Luckily a single `conan.lock` file can be used, as long as the union of dependencies is included. The current instructions in the `BUILD.md` file are insufficient to regenerate the lock file such that it is compatible with all OSes, which this change addresses. The three profiles contain the bare minimum needed to generate the lockfile; it does not particularly matter whether the build type is Debug or Release, for instance.
10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
[settings]
|
|
arch=x86_64
|
|
build_type=Release
|
|
compiler=msvc
|
|
compiler.cppstd=20
|
|
compiler.runtime=dynamic
|
|
compiler.runtime_type=Release
|
|
compiler.version=194
|
|
os=Windows
|