Files
UnrealEngine/Engine/Source/ThirdParty/Blosc/c-blosc-1.21.0/cmake/FindLZ4.cmake
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

11 lines
274 B
CMake

find_path(LZ4_INCLUDE_DIR lz4.h)
find_library(LZ4_LIBRARY NAMES lz4)
if (LZ4_INCLUDE_DIR AND LZ4_LIBRARY)
set(LZ4_FOUND TRUE)
message(STATUS "Found LZ4 library: ${LZ4_LIBRARY}")
else ()
message(STATUS "No LZ4 library found. Using internal sources.")
endif ()