zephyr/samples/modules/nanopb/CMakeLists.txt
Pieter De Gendt 44e8123da3 samples: modules: nanopb: Demonstrate skipping fields with Kconfig
Extend the nanopb sample with a Kconfig option to optionally include
a field in a protobuf message.

Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
2024-03-01 10:21:34 +00:00

20 lines
481 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(nanopb_sample)
list(APPEND CMAKE_MODULE_PATH ${ZEPHYR_BASE}/modules/nanopb)
include(nanopb)
if(CONFIG_SAMPLE_UNLUCKY_NUMBER)
set(unlucky_number_type "FT_DEFAULT")
else()
set(unlucky_number_type "FT_IGNORE")
endif()
zephyr_nanopb_sources(app src/simple.proto)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})