mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
VideoCommon/Vulkan: Explicitly link in xxhash
Lessens the dependency on the LIBS variable (and also makes the required libraries explicit).
This commit is contained in:
@ -41,5 +41,9 @@ include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/Externals/glslang/SPIRV)
|
||||
|
||||
# Link against glslang, the other necessary libraries are referenced by the executable.
|
||||
add_dolphin_library(videovulkan "${SRCS}" "${LIBS}")
|
||||
target_link_libraries(videovulkan PRIVATE glslang)
|
||||
target_link_libraries(videovulkan
|
||||
PRIVATE
|
||||
glslang
|
||||
xxhash
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user