mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 15:55:53 +00:00
With pull request #16208 and #16404 hooks for calling user defined code was implemented. These user extensions are gated by a number of Kconfigs. The test in this pull request tests that code compiles when these Kconfigs are enabled. Signed-off-by: Asger Munk Nielsen <asmk@oticon.com>
13 lines
289 B
CMake
13 lines
289 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
include_directories("./src")
|
|
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(bluetooth_ctrl_user_ext)
|
|
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|