Merge pull request #12920 from TellowKrinkle/XXHashLink

Properly link against xxhash
This commit is contained in:
Admiral H. Curtiss
2024-07-07 23:49:01 +02:00
committed by GitHub
3 changed files with 3 additions and 2 deletions

View File

@ -6,3 +6,4 @@ target_include_directories(xxhash
PUBLIC PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/xxHash ${CMAKE_CURRENT_SOURCE_DIR}/xxHash
) )
add_library(xxhash::xxhash ALIAS xxhash)

View File

@ -45,7 +45,7 @@ PUBLIC
PRIVATE PRIVATE
# Link against glslang, the other necessary libraries are referenced by the executable. # Link against glslang, the other necessary libraries are referenced by the executable.
glslang glslang
xxhash xxhash::xxhash
) )
if (ANDROID AND _M_ARM_64) if (ANDROID AND _M_ARM_64)

View File

@ -214,7 +214,7 @@ PUBLIC
PRIVATE PRIVATE
fmt::fmt fmt::fmt
spng::spng spng::spng
xxhash xxhash::xxhash
imgui imgui
implot implot
glslang glslang