mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
8 lines
76 B
CMake
8 lines
76 B
CMake
|
project(xxhash C)
|
||
|
|
||
|
set(SRCS
|
||
|
xxhash.c
|
||
|
)
|
||
|
|
||
|
add_library(xxhash STATIC ${SRCS})
|