axmol/thirdparty/xxhash/CMakeLists.txt

11 lines
173 B
CMake
Raw Normal View History

2021-06-24 00:04:29 +08:00
set(lib_name xxhash)
set(target_name ${lib_name})
project(${lib_name})
add_library(${target_name} STATIC
xxhash.c
)
target_include_directories(${target_name} PUBLIC .)