mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07: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
|
|
)
|