mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-01 02:21:26 +02:00
9 lines
175 B
CMake
9 lines
175 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
|
|
)
|