From 8a95311b51e6b64835ba8141594d8e804241377e Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Tue, 26 Aug 2014 18:05:10 +0300 Subject: Add pb_common.c to examples --- extra/FindNanopb.cmake | 4 ++-- extra/nanopb.mk | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'extra') diff --git a/extra/FindNanopb.cmake b/extra/FindNanopb.cmake index c804e701..65ab5884 100644 --- a/extra/FindNanopb.cmake +++ b/extra/FindNanopb.cmake @@ -182,8 +182,8 @@ mark_as_advanced(NANOPB_INCLUDE_DIRS) # Find nanopb source files set(NANOPB_SRCS) set(NANOPB_HDRS) -list(APPEND _nanopb_srcs pb_decode.c pb_encode.c) -list(APPEND _nanopb_hdrs pb_decode.h pb_encode.h pb.h) +list(APPEND _nanopb_srcs pb_decode.c pb_encode.c pb_common.c) +list(APPEND _nanopb_hdrs pb_decode.h pb_encode.h pb_common.h pb.h) foreach(FIL ${_nanopb_srcs}) find_file(${FIL}__nano_pb_file NAMES ${FIL} PATHS ${NANOPB_SRC_ROOT_FOLDER} ${NANOPB_INCLUDE_DIRS}) diff --git a/extra/nanopb.mk b/extra/nanopb.mk index 7576baee..5c2cff56 100644 --- a/extra/nanopb.mk +++ b/extra/nanopb.mk @@ -5,7 +5,7 @@ NANOPB_DIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST)))../) # Files for the nanopb core -NANOPB_CORE = $(NANOPB_DIR)/pb_encode.c $(NANOPB_DIR)/pb_decode.c +NANOPB_CORE = $(NANOPB_DIR)/pb_encode.c $(NANOPB_DIR)/pb_decode.c $(NANOPB_DIR)/pb_common.c # Check if we are running on Windows ifdef windir -- cgit 1.2.3-korg