zephyr/samples/bluetooth/mesh/CMakeLists.txt
Jamie McCrae e6a873a971 samples: bluetooth: mesh: Fix usage of board name checking
Fixes using outdated hwmv1 board name checking with proper board
defines

Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
2024-03-22 10:06:04 +01:00

22 lines
493 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
set(QEMU_EXTRA_FLAGS -s)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(mesh)
target_sources(app PRIVATE src/main.c)
if(CONFIG_BOARD_BBC_MICROBIT)
target_sources(app PRIVATE src/microbit.c)
else()
target_sources(app PRIVATE src/board.c)
endif()
if (CONFIG_BUILD_WITH_TFM)
target_include_directories(app PRIVATE
$<TARGET_PROPERTY:tfm,TFM_BINARY_DIR>/api_ns/interface/include
)
endif()