all the external modules related samples are part of samples/modules, whereas lz4 is in parent. move it to sample/modules/compression/lz4 Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
9 lines
186 B
CMake
9 lines
186 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(lz4)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|