There are no items in your cart
Add More
Add More
| Item Details | Price | ||
|---|---|---|---|
In your CMake:
Run conan profile detect to generate a modern profile. | Conan 1 | Conan 2 | Status | |---------|---------|--------| | cmake_paths | CMakeToolchain + CMakeDeps | Replaced | | cmake_find_package | CMakeDeps | Replaced | | pkg_config | PkgConfigDeps | Replaced | | txt | CMakeToolchain (no longer default) | Removed | conan 2 migration
# Conan 1 profile [settings] os=Macos os.version=10.15 compiler=apple-clang compiler.version=12.0 [settings] os=macOS os.version=11.0 compiler=apple-clang compiler.version=13.0 compiler.libcxx=libc++ In your CMake: Run conan profile detect to
: Most Conan 1 recipes need updates. Use conan create --version=1.0 --name=oldpkg . use conan install --version=1.x for legacy.
# Conan 2 def layout(self): cmake_layout(self) # standard src/build pattern Option A – Keep both : Install Conan 2 separately, use conan install --version=1.x for legacy.