diff --git a/md__2____w_2rippled_2rippled_2BUILD.html b/md__2____w_2rippled_2rippled_2BUILD.html index cbe93b18ec..56c503cd34 100644 --- a/md__2____w_2rippled_2rippled_2BUILD.html +++ b/md__2____w_2rippled_2rippled_2BUILD.html @@ -151,20 +151,25 @@ Patched recipes
Alternatively, you can pull the patched recipes into the repository and use them locally:
In the case we switch to a newer version of a dependency that still requires a patch, it will be necessary for you to pull in the changes and re-export the updated dependencies with the newer version. However, if we switch to a newer version that no longer requires a patch, no action is required on your part, as the new recipe will be automatically pulled from the official Conan Center.
[!NOTE] You might need to add
@@ -281,12 +286,7 @@ Build and Test--lockfile=""to yourconan installcommand to avoid automatic use of the existingconan.lockfile when you runconan exportmanually on your machineTo build Debug, in the next step, be sure to set
-DCMAKE_BUILD_TYPE=DebugFor a single-configuration generator, e.g.
Unix MakefilesorNinja, you only need to run this command once. For a multi-configuration generator, e.g.Visual Studio, you may want to run it more than once.Each of these commands should also have a different
-build_typesetting. A second command with the samebuild_typesetting will overwrite the files generated by the first. You can pass the build type on the command line with--settings build_type=$BUILD_TYPEor in the profile itself, under the section[settings]with the keybuild_type.If you are using a Microsoft Visual C++ compiler, then you will need to ensure consistency between the
-build_typesetting and thecompiler.runtimesetting.When
-build_typeisRelease,compiler.runtimeshould beMT.When
-build_typeisDebug,compiler.runtimeshould beMTd.+conan install .. --output-folder . --build missing --settings build_type=Release --settings compiler.runtime=MT-conan install .. --output-folder . --build missing --settings build_type=Debug --settings compiler.runtime=MTd-Configure CMake and pass the toolchain file generated by Conan, located at
$OUTPUT_FOLDER/build/generators/conan_toolchain.cmake.Single-config generators:
Pass the CMake variable
CMAKE_BUILD_TYPEand make sure it matches the one of thebuild_typesettings you chose in the previous step.