roaring/3.0.0

Portable Roaring bitmaps in C and C++
Recipe info
2024-03-21

Available packages
Linux
Windows
macOS
macOS Apple Silicon

Install
Add the following line to your conanfile.txt:
[requires]
roaring/3.0.0

Using roaring

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
roaring/3.0.0
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("roaring/3.0.0")

    def layout(self):
        cmake_layout(self)

Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):

$ conan install conanfile.txt --build=missing

Useful information to take into account to consume this library:


These are the main declared targets:

  • CMake package name(s): roaring
  • CMake target name(s): roaring::roaring
  • pkg-config file name(s): roaring.pc

A simple use case using the CMake file name and the global target:

# ...
find_package(roaring REQUIRED)
# ...
target_link_libraries(YOUR_TARGET roaring::roaring)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the roaring homepage listed above:

#include "roaring/array_util.h"
#include "roaring/art/art.h"
#include "roaring/bitset/bitset.h"
#include "roaring/bitset_util.h"
#include "roaring/containers/array.h"
#include "roaring/containers/bitset.h"
#include "roaring/containers/container_defs.h"
#include "roaring/containers/containers.h"
#include "roaring/containers/convert.h"
#include "roaring/containers/mixed_andnot.h"
#include "roaring/containers/mixed_equal.h"
#include "roaring/containers/mixed_intersection.h"
#include "roaring/containers/mixed_negation.h"
#include "roaring/containers/mixed_subset.h"
#include "roaring/containers/mixed_union.h"
#include "roaring/containers/mixed_xor.h"
#include "roaring/containers/perfparameters.h"
#include "roaring/containers/run.h"
#include "roaring/isadetection.h"
#include "roaring/memory.h"
#include "roaring/misc/configreport.h"
#include "roaring/portability.h"
#include "roaring/roaring.h"
#include "roaring/roaring.hh"
#include "roaring/roaring64.h"
#include "roaring/roaring64map.hh"
#include "roaring/roaring_array.h"
#include "roaring/roaring_types.h"
#include "roaring/roaring_version.h"
#include "roaring/utilasm.h"