Create conan package by conan-center-index
This papar based on conan 1.x Intro The conan-center-index contains a lot of recipes. If you want to build everything from scratch or create conan packages on your local conan repo, you can use this recipes. Assuming you already have some knowledge of conan and build your own conan package based on conan docs. The conan tutorial tell you import a prebuild package like below conanfile.txt style [requires] poco/1.9.4 conanfile.py style requires = ["poco/1.9.4"] # or self.requires("poco/1.9.4") Somehow, your want to build your packege with specific conan settings, such as cross-compile, with debug info and so on. ...