mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-02 22:32:36 +01:00
8 lines
76 B
CMake
8 lines
76 B
CMake
|
project(xxhash C)
|
||
|
|
||
|
set(SRCS
|
||
|
xxhash.c
|
||
|
)
|
||
|
|
||
|
add_library(xxhash STATIC ${SRCS})
|