summaryrefslogtreecommitdiffstats
path: root/cmake/FindLZ4.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindLZ4.cmake')
-rw-r--r--cmake/FindLZ4.cmake9
1 files changed, 9 insertions, 0 deletions
diff --git a/cmake/FindLZ4.cmake b/cmake/FindLZ4.cmake
new file mode 100644
index 00000000..46c1fdc1
--- /dev/null
+++ b/cmake/FindLZ4.cmake
@@ -0,0 +1,9 @@
+find_path(LZ4_INCLUDE_DIR NAMES lz4.h)
+find_library(LZ4_LIBRARIES NAMES lz4)
+
+include(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(
+ LZ4 DEFAULT_MSG
+ LZ4_LIBRARIES LZ4_INCLUDE_DIR)
+
+mark_as_advanced(LZ4_INCLUDE_DIR LZ4_LIBRARIES)