CMakeLists.txt 216 B

12345678910
  1. project(xxhash C)
  2. add_library(xxhash STATIC xxHash/xxhash.c)
  3. dolphin_disable_warnings(xxhash)
  4. target_include_directories(xxhash
  5. PUBLIC
  6. ${CMAKE_CURRENT_SOURCE_DIR}/xxHash
  7. )
  8. add_library(xxhash::xxhash ALIAS xxhash)