2024-12-15 22:03:17 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Nordic Semiconductor
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
|
|
|
|
#
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
|
|
project(NONE)
|
|
|
|
|
|
|
|
# NORDIC SDK APP START
|
|
|
|
target_sources(app PRIVATE
|
2025-01-08 14:54:41 +00:00
|
|
|
src/main.c
|
|
|
|
src/ble/connection.c
|
|
|
|
src/ble/advertising.c
|
|
|
|
src/ble/management.c
|
|
|
|
src/ble/service.c
|
|
|
|
src/ble/bonds.c
|
|
|
|
src/ble/pairing.c
|
|
|
|
src/ble/ble.c
|
2025-01-10 12:03:33 +00:00
|
|
|
src/power_management/power_management.c
|
2025-01-08 14:54:41 +00:00
|
|
|
src/trz_comm/uart.c
|
|
|
|
src/trz_comm/spi.c
|
|
|
|
src/trz_comm/trz_comm.c
|
|
|
|
src/signals/signals.c
|
2024-12-15 22:03:17 +00:00
|
|
|
)
|
|
|
|
|
2025-01-08 14:54:41 +00:00
|
|
|
include_directories(src/signals/inc)
|
|
|
|
include_directories(src/trz_comm/inc)
|
|
|
|
include_directories(src/ble/inc)
|
2025-01-10 12:03:33 +00:00
|
|
|
include_directories(src/power_management/inc)
|
2024-12-15 22:03:17 +00:00
|
|
|
|
|
|
|
# NORDIC SDK APP END
|
|
|
|
|
|
|
|
zephyr_library_include_directories(.)
|