build: add EnTT library

This commit is contained in:
2026-07-25 10:29:04 +08:00
parent 3e7ce71219
commit 849386a3bc
111 changed files with 24637 additions and 0 deletions

20
include/entt/stl/bit.hpp Normal file
View File

@@ -0,0 +1,20 @@
#ifndef ENTT_STL_BIT_HPP
#define ENTT_STL_BIT_HPP
/*! @cond ENTT_INTERNAL */
#if __has_include(<entt/ext/stl/bit.hpp>)
# include <entt/ext/stl/bit.hpp>
#else
# include <bit>
namespace entt::stl {
using std::bit_ceil;
using std::has_single_bit;
using std::popcount;
} // namespace entt::stl
#endif
/*! @endcond */
#endif