mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
10 lines
207 B
CMake
10 lines
207 B
CMake
|
|
find_library(LZ4_LIBRARIES NAMES lz4)
|
|
find_path(LZ4_INCLUDE_DIRS NAMES lz4.h)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LZ4
|
|
DEFAULT_MSG
|
|
LZ4_LIBRARIES
|
|
LZ4_INCLUDE_DIRS)
|