summaryrefslogtreecommitdiff
path: root/Externals
diff options
context:
space:
mode:
authorTellowKrinkle <tellowkrinkle@gmail.com>2024-07-06 16:56:44 -0500
committerTellowKrinkle <tellowkrinkle@gmail.com>2024-07-06 16:56:44 -0500
commitcab6e7c12e280be05995655ea9a3a458466dd849 (patch)
treeb4931769493f89ed0f275ba8e5a1cdc3ffb3d9c1 /Externals
parent02e1b9414909db1644562b3669967feff203460f (diff)
Properly link against xxhash
Things using dolphin_find_optional_system_library need to link against the name used there or they won't work with both the system and bundled cases
Diffstat (limited to 'Externals')
-rw-r--r--Externals/xxhash/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Externals/xxhash/CMakeLists.txt b/Externals/xxhash/CMakeLists.txt
index c275795083..a874dc4e90 100644
--- a/Externals/xxhash/CMakeLists.txt
+++ b/Externals/xxhash/CMakeLists.txt
@@ -6,3 +6,4 @@ target_include_directories(xxhash
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/xxHash
)
+add_library(xxhash::xxhash ALIAS xxhash)