4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 21:13:32 +08:00
2016-05-10 09:34:05 +08:00

13 lines
220 B
Python

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')