mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
9 lines
166 B
CMake
9 lines
166 B
CMake
project(xxhash C)
|
|
|
|
add_library(xxhash STATIC xxhash.c)
|
|
dolphin_disable_warnings_msvc(xxhash)
|
|
target_include_directories(xxhash
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|