mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-14 23:11:06 +00:00
15 lines
223 B
CMake
15 lines
223 B
CMake
set(XXHASH
|
|
xxhash.c
|
|
)
|
|
|
|
add_library(xxhash STATIC
|
|
${XXHASH}
|
|
)
|
|
|
|
set_target_properties(xxhash
|
|
PROPERTIES
|
|
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
|
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
|
)
|
|
|