The samples had a _iso suffix, but the other ISO samples prefix iso_. Renames the central and peripheral sample so that they prefix iso_ rather than suffix _iso. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
12 lines
269 B
CMake
12 lines
269 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(iso_peripheral)
|
|
|
|
target_sources(app PRIVATE
|
|
src/main.c
|
|
)
|
|
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/samples/bluetooth)
|