Conan is an open-source, decentralized, and multi-platform package manager for C and C++ developers. It allows you to manage your libraries, resolve dependencies, and integrate seamlessly with build systems like CMake, Visual Studio, and Makefiles.
def build(self): cmake = CMake(self) cmake.configure() cmake.build() how to use conan
# Binary configuration settings = "os", "compiler", "build_type", "arch" Conan is an open-source
Now, use CMake to build your app, pointing it to the toolchain file Conan generated. use CMake to build your app