1# 2# Copyright (c) 2021 Nordic Semiconductor 3# 4# SPDX-License-Identifier: Apache-2.0 5# 6 7cmake_minimum_required(VERSION 3.20.0) 8 9find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) 10project(NONE) 11 12FILE(GLOB app_sources src/*.c) 13 14target_sources(app PRIVATE 15 ${app_sources} 16) 17 18zephyr_library_include_directories(${ZEPHYR_BASE}/samples/bluetooth) 19