mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-12 11:20:46 +02: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}
|
|
)
|