zeek/auxil/libunistd/xxhash/CMakeLists.txt
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

13 lines
199 B
CMake

# libunistd/xxhash/CMakeLists.txt
project(libxxhash)
message("--- Building library ${PROJECT_NAME} ---")
set(SOURCES
xxhash.h
xxhash.c
xxhsum.c
)
add_library(${PROJECT_NAME} STATIC ${SOURCES})