17 lines
259 B
CMake
17 lines
259 B
CMake
|
# Copyright (c) 2020 Linumiz
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
if(CONFIG_LZ4)
|
||
|
|
||
|
set(LZ4_DIR ${ZEPHYR_CURRENT_MODULE_DIR})
|
||
|
|
||
|
zephyr_library()
|
||
|
|
||
|
zephyr_include_directories(${LZ4_DIR}/lib)
|
||
|
|
||
|
zephyr_library_sources(
|
||
|
${LZ4_DIR}/lib/lz4.c
|
||
|
)
|
||
|
|
||
|
endif()
|