1# SPDX-License-Identifier: Apache-2.0
2
3cmake_minimum_required(VERSION 3.20.0)
4
5find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
6project(mtu_update)
7
8target_sources(app PRIVATE
9  src/main.c
10  src/peripheral_mtu_update.c
11)
12
13zephyr_library_include_directories(${ZEPHYR_BASE}/samples/bluetooth)
14