From 8f344312651d4230e099bcf4e1678f7b9e6484f1 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Mon, 5 Jul 2021 17:36:14 -0700 Subject: [PATCH] Adds CMakeLists file --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..6aa5c6c7 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,4 @@ +set(NAME xxhash) +set(SRCS xxhash.c) + +add_library(${NAME} STATIC ${SRCS})