mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-31 18:46:08 +00:00
7fda6dde73
Replaces all instances of ankerl's unordered map/set with boost's `unordered_flat_*` classes. This uses std::hash since boost::hash is actually a lot slower. Also adds an abstraction layer in `Common` so future changes are quicker and easier. Other implementation details: - ankerl provided hash specializations for tuple and pair, so those were ported here - std::erase_if doesn't work on boost, so just used the ADL'd erase_if This should be about equal or superior performance as unordered_dense for everything except iteration. Signed-off-by: crueter <crueter@eden-emu.dev> - [x] I have read and followed the [Contribution Guidelines](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/CONTRIBUTING.md#code-contributions). - [x] I have read and followed the [AI Policy](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/policies/AI.md) - [x] I have read and followed the [Coding Guidelines](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/policies/Coding.md) to the best of my ability. ------------------- Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4326 Reviewed-by: Lizzie and Samuel <lizzie@eden-emu.dev> Reviewed-by: MaranBr <maranbr@eden-emu.dev>
32 lines
666 B
CMake
32 lines
666 B
CMake
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
set(ARCHITECTURE "@ARCHITECTURE@")
|
|
|
|
if (NOT @BUILD_SHARED_LIBS@)
|
|
find_dependency(Boost 1.57)
|
|
find_dependency(fmt 9)
|
|
find_dependency(mcl 0.1.12 EXACT)
|
|
|
|
if ("arm64" IN_LIST ARCHITECTURE)
|
|
find_dependency(oaknut 2.0.1)
|
|
endif()
|
|
|
|
if ("riscv" IN_LIST ARCHITECTURE)
|
|
find_dependency(biscuit 0.9.1)
|
|
endif()
|
|
|
|
if ("x86_64" IN_LIST ARCHITECTURE)
|
|
find_dependency(xbyak 7)
|
|
endif()
|
|
|
|
if (@DYNARMIC_USE_LLVM@)
|
|
find_dependency(LLVM)
|
|
endif()
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
|
|
|
|
check_required_components(@PROJECT_NAME@)
|