Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

2.1 KiB

Conan

Conan is a popular package manager for C and C++ languages and is designed to be cross-platform, extensible, and easy to use. It allows developers to declare, manage, and fetch dependencies while automating the build process. Conan supports various build systems, such as CMake, Visual Studio, MSBuild, and more.

Installation

To install Conan, you can use pip, the Python package manager:

pip install conan

Basic Usage

  • Create a conanfile.txt file in your project root directory, specifying dependencies you need for your project:
[requires]
boost/1.75.0

[generators]
cmake
  • Run the conan install command to fetch and build required dependencies:
mkdir build && cd build
conan install ..
  • Now build your project using your build system, for example CMake:
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build .

Creating Packages

To create a package in Conan, you need to write a conanfile.py file with package information and build instructions.

Here's an example:

from conans import ConanFile, CMake

class MyLibraryConan(ConanFile):
    name = "MyLibrary"
    version = "0.1"
    license = "MIT"
    url = "https://github.com/username/mylibrary"
    description = "A simple example library"
    settings = "os", "compiler", "build_type", "arch"
    generators = "cmake"

    def build(self):
        cmake = CMake(self)
        cmake.configure(source_folder="src")
        cmake.build()

    def package(self):
        self.copy("*.hpp", dst="include", src="src/include")
        self.copy("*.lib", dst="lib", keep_path=False)
        self.copy("*.dll", dst="bin", keep_path=False)
        self.copy("*.so", dst="lib", keep_path=False)
        self.copy("*.a", dst="lib", keep_path=False)

    def package_info(self):
        self.cpp_info.libs = ["MyLibrary"]

With that setup, you can create a package by running:

conan create . username/channel

This will compile the package and store it in your Conan cache. You can now use this package as a dependency in other projects.