mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
cab6e7c12e
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
10 lines
216 B
CMake
10 lines
216 B
CMake
project(xxhash C)
|
|
|
|
add_library(xxhash STATIC xxHash/xxhash.c)
|
|
dolphin_disable_warnings(xxhash)
|
|
target_include_directories(xxhash
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xxHash
|
|
)
|
|
add_library(xxhash::xxhash ALIAS xxhash)
|