summaryrefslogtreecommitdiff
path: root/Externals/xxhash/CMakeLists.txt
blob: a874dc4e90c89592f4022cf9ff152dfc55d71d59 (plain)
1
2
3
4
5
6
7
8
9
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)