Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.05 KB

File metadata and controls

49 lines (41 loc) · 1.05 KB

Conan setup

Get conan

You can install conan for your OS from https://conan.io/downloads.

Post-install

Remotes

Check that conan has access to its remotes:

conan remote list

You should get:

conancenter: https://center2.conan.io [Verify SSL: True, Enabled: True]

If not, run:

conan remote add conancenter https://center.conan.io

Profile

Now you can initiate your conan profile:

conan profile detect

Windows Configuration

If you are building on Windows, strictly enforce the usage of MSVC to avoid compatibility issues. Check your profile (usually located at C:\Users\<YOU>\.conan2\profiles\default) and ensure it matches the configuration below:

[settings]
arch=x86_64
build_type=Debug
compiler=msvc
compiler.cppstd=23
compiler.runtime=dynamic
compiler.runtime_type=Debug
compiler.version=195
os=Windows

Note

If conan profile detect generated a profile using compiler=gcc (MinGW) or clang, you must edit the file manually to match the settings above.