Skip to content
Snippets Groups Projects
Commit 6aab1e5e authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Introduce robinhood map/hash

parent c2786c7f
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,12 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON) ...@@ -12,6 +12,12 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
GIT_TAG v0.14 GIT_TAG v0.14
) )
FetchContent_Declare(
robin-hood-hashing
GIT_REPOSITORY https://git.alchemyviewer.org/alchemy/thirdparty/robin-hood-hashing.git
GIT_TAG alchemy
)
# FetchContent_Declare( # FetchContent_Declare(
# Catch2 # Catch2
# GIT_REPOSITORY https://github.com/catchorg/Catch2.git # GIT_REPOSITORY https://github.com/catchorg/Catch2.git
...@@ -54,6 +60,7 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON) ...@@ -54,6 +60,7 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
# #Download the rest of the libraries # #Download the rest of the libraries
# FetchContent_MakeAvailable(fmt) # FetchContent_MakeAvailable(fmt)
FetchContent_MakeAvailable(meshoptimizer) FetchContent_MakeAvailable(meshoptimizer)
FetchContent_MakeAvailable(robin-hood-hashing)
# # Typically you don't care so much for a third party library's tests to be # # Typically you don't care so much for a third party library's tests to be
# # run from your own project's code. # # run from your own project's code.
......
...@@ -285,6 +285,7 @@ endif(LLCOMMON_LINK_SHARED) ...@@ -285,6 +285,7 @@ endif(LLCOMMON_LINK_SHARED)
target_link_libraries( target_link_libraries(
llcommon llcommon
PUBLIC
${BREAKPAD_EXCEPTION_HANDLER_LIBRARIES} ${BREAKPAD_EXCEPTION_HANDLER_LIBRARIES}
${APRUTIL_LIBRARIES} ${APRUTIL_LIBRARIES}
${APR_LIBRARIES} ${APR_LIBRARIES}
...@@ -299,6 +300,7 @@ target_link_libraries( ...@@ -299,6 +300,7 @@ target_link_libraries(
${BOOST_SYSTEM_LIBRARY} ${BOOST_SYSTEM_LIBRARY}
${GOOGLE_PERFTOOLS_LIBRARIES} ${GOOGLE_PERFTOOLS_LIBRARIES}
${URIPARSER_LIBRARIES} ${URIPARSER_LIBRARIES}
robin_hood
) )
if (DARWIN) if (DARWIN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment