entt/3.13.0

Gaming meets modern C++ - a fast and reliable entity-component system (ECS) and much more
Recipe info
2024-01-18

Available packages
Header Only

Install
Add the following line to your conanfile.txt:
[requires]
entt/3.13.0

Using entt

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]
entt/3.13.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("entt/3.13.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): EnTT
  • CMake target name(s): EnTT::EnTT
  • pkg-config file name(s): entt.pc

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

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

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

#include "BUILD.bazel"
#include "entt/config/config.h"
#include "entt/config/macro.h"
#include "entt/config/version.h"
#include "entt/container/dense_map.hpp"
#include "entt/container/dense_set.hpp"
#include "entt/container/fwd.hpp"
#include "entt/core/algorithm.hpp"
#include "entt/core/any.hpp"
#include "entt/core/attribute.h"
#include "entt/core/compressed_pair.hpp"
#include "entt/core/enum.hpp"
#include "entt/core/family.hpp"
#include "entt/core/fwd.hpp"
#include "entt/core/hashed_string.hpp"
#include "entt/core/ident.hpp"
#include "entt/core/iterator.hpp"
#include "entt/core/memory.hpp"
#include "entt/core/monostate.hpp"
#include "entt/core/tuple.hpp"
#include "entt/core/type_info.hpp"
#include "entt/core/type_traits.hpp"
#include "entt/core/utility.hpp"
#include "entt/entity/component.hpp"
#include "entt/entity/entity.hpp"
#include "entt/entity/fwd.hpp"
#include "entt/entity/group.hpp"
#include "entt/entity/handle.hpp"
#include "entt/entity/helper.hpp"
#include "entt/entity/mixin.hpp"
#include "entt/entity/observer.hpp"
#include "entt/entity/organizer.hpp"
#include "entt/entity/registry.hpp"
#include "entt/entity/runtime_view.hpp"
#include "entt/entity/snapshot.hpp"
#include "entt/entity/sparse_set.hpp"
#include "entt/entity/storage.hpp"
#include "entt/entity/view.hpp"
#include "entt/entt.hpp"
#include "entt/fwd.hpp"
#include "entt/graph/adjacency_matrix.hpp"
#include "entt/graph/dot.hpp"
#include "entt/graph/flow.hpp"
#include "entt/graph/fwd.hpp"
#include "entt/locator/locator.hpp"
#include "entt/meta/adl_pointer.hpp"
#include "entt/meta/container.hpp"
#include "entt/meta/context.hpp"
#include "entt/meta/factory.hpp"
#include "entt/meta/fwd.hpp"
#include "entt/meta/meta.hpp"
#include "entt/meta/node.hpp"
#include "entt/meta/pointer.hpp"
#include "entt/meta/policy.hpp"
#include "entt/meta/range.hpp"
#include "entt/meta/resolve.hpp"
#include "entt/meta/template.hpp"
#include "entt/meta/type_traits.hpp"
#include "entt/meta/utility.hpp"
#include "entt/platform/android-ndk-r17.hpp"
#include "entt/poly/fwd.hpp"
#include "entt/poly/poly.hpp"
#include "entt/process/fwd.hpp"
#include "entt/process/process.hpp"
#include "entt/process/scheduler.hpp"
#include "entt/resource/cache.hpp"
#include "entt/resource/fwd.hpp"
#include "entt/resource/loader.hpp"
#include "entt/resource/resource.hpp"
#include "entt/signal/delegate.hpp"
#include "entt/signal/dispatcher.hpp"
#include "entt/signal/emitter.hpp"
#include "entt/signal/fwd.hpp"
#include "entt/signal/sigh.hpp"