4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-28 01:40:25 +08:00

13 lines
220 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
src = Split('''
pb_common.c
pb_decode.c
pb_encode.c
''')
CPPPATH = [cwd]
group = DefineGroup('Nanopb', src, depend = ['RT_USING_NANOPB'], CPPPATH = CPPPATH)
Return('group')