Files
mellifera_firmware/firmware/app/CMakeLists.txt
Brendan Haines b41f8819be
Some checks failed
Build / build (ubuntu-22.04) (push) Has been cancelled
Build / Build (push) Has been cancelled
Documentation / build (push) Has been cancelled
working simultaneous bluetooth (gatt example) and getting data from sensors
2025-05-31 13:00:11 -06:00

16 lines
396 B
CMake

#-------------------------------------------------------------------------------
# Zephyr Example Application
#
# Copyright (c) 2021 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(app LANGUAGES C)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE
${app_sources}
)