Merge pull request #6556 from lioncash/video-libs
VideoCommon/Vulkan: Explicitly link in xxhash
This commit is contained in:
commit
c697b7d435
|
@ -588,7 +588,6 @@ if(NOT XXHASH_FOUND)
|
||||||
add_subdirectory(Externals/xxhash)
|
add_subdirectory(Externals/xxhash)
|
||||||
include_directories(Externals/xxhash)
|
include_directories(Externals/xxhash)
|
||||||
endif()
|
endif()
|
||||||
LIST(APPEND LIBS xxhash)
|
|
||||||
|
|
||||||
find_package(ZLIB)
|
find_package(ZLIB)
|
||||||
if(ZLIB_FOUND)
|
if(ZLIB_FOUND)
|
||||||
|
|
|
@ -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.
|
# Link against glslang, the other necessary libraries are referenced by the executable.
|
||||||
add_dolphin_library(videovulkan "${SRCS}" "${LIBS}")
|
add_dolphin_library(videovulkan "${SRCS}" "${LIBS}")
|
||||||
target_link_libraries(videovulkan PRIVATE glslang)
|
target_link_libraries(videovulkan
|
||||||
|
PRIVATE
|
||||||
|
glslang
|
||||||
|
xxhash
|
||||||
|
)
|
||||||
|
|
||||||
|
|
|
@ -64,6 +64,7 @@ PUBLIC
|
||||||
core
|
core
|
||||||
PRIVATE
|
PRIVATE
|
||||||
png
|
png
|
||||||
|
xxhash
|
||||||
)
|
)
|
||||||
|
|
||||||
if(_M_X86)
|
if(_M_X86)
|
||||||
|
|
Loading…
Reference in New Issue