zephyr/tests/subsys/shell/shell/CMakeLists.txt
Jakub Rzeszutko bfb9ba022a tests: move shell tests to subsys
Move shell tests to tests/subsys directory where it belongs.

Signed-off-by: Jakub Rzeszutko <jakub.rzeszutko@nordicsemi.no>
2020-12-03 08:04:50 -05:00

9 lines
222 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(shell)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})